blob: 4b283afd171eaa03e5ed6eb3bb6c3baf2953eb45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Index: radiant/Gemfile
===================================================================
--- radiant.orig/Gemfile
+++ radiant/Gemfile
@@ -7,8 +7,10 @@ source :rubygems
# requires radiant and therefore pulls in every
# dependency mentioned in radiant.gemspec.
#
-gem 'rails', '2.3.14'
-gem 'sqlite3', '1.3.4'
+%w{rails activesupport activerecord activeresource actionpack actionmailer}.each do |g|
+ gem g, '~> 2.3.14'
+end
+gem 'sqlite3', '~> 1.3.4'
# When radiant is installed as a gem you can run all of
# its tests and specs from an instance. If you're working
|