rails 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,22 @@
1
+ *2.0.2* (December 16th, 2007)
2
+
3
+ * Changed the default database from mysql to sqlite3, so now running "rails myapp" will have a config/database.yml that's setup for SQLite3 (which in OS X Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run "rails -d mysql myapp" [DHH]
4
+
5
+ * Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH]
6
+
7
+ * Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #10363 [revans]
8
+
9
+ * Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat]
10
+
11
+ * Fixed that functional tests generated for scaffolds should use fixture calls instead of hard-coded IDs #10435 [boone]
12
+
13
+ * Added db:migrate:redo and db:migrate:reset for rerunning existing migrations #10431, #10432 [matt]
14
+
15
+ * RAILS_GEM_VERSION may be double-quoted also. #10443 [James Cox]
16
+
17
+ * Update rails:freeze:gems to work with RubyGems 0.9.5. [Jeremy Kemper]
18
+
19
+
1
20
  *2.0.1* (December 7th, 2007)
2
21
 
3
22
  * Fixed Active Record bug
@@ -21,7 +40,7 @@
21
40
 
22
41
  * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
23
42
 
24
- * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Chu Yeow]
43
+ * RAILS_GEM_VERSION may be set to any valid gem version specifier. #10057 [Chad Woolley, Cheah Chu Yeow]
25
44
 
26
45
  * Load config/preinitializer.rb, if present, before loading the environment. #9943 [Chad Woolley]
27
46
 
@@ -35,7 +54,7 @@
35
54
 
36
55
  * Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. Closes #9795 [lazyatom]
37
56
 
38
- * Added --skip-timestamps to generators that produce models #10036 [tpope]
57
+ * Added --skip-timestamps to generators that produce models #10036 [Tim Pope]
39
58
 
40
59
  * Update Prototype to 1.6.0 and script.aculo.us to 1.8.0. [sam, madrobby]
41
60
 
@@ -93,7 +112,7 @@ databases on localhost. #9753 [Trevor Wennblom]
93
112
 
94
113
  * Removed web_service generator [Koz]
95
114
 
96
- * Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [fcheung]. Example:
115
+ * Added the :all option to config.plugins that'll include the rest of the plugins not already explicitly named #9613 [Frederick Cheung]. Example:
97
116
 
98
117
  # Loads :classic_pagination before all the other plugins
99
118
  config.plugins = [ :classic_pagination, :all ]
@@ -106,7 +125,7 @@ databases on localhost. #9753 [Trevor Wennblom]
106
125
 
107
126
  * Added db:drop:all to drop all databases declared in config/database.yml [DHH]
108
127
 
109
- * Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [lifofifo]
128
+ * Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [Pratik Naik]
110
129
 
111
130
  For example:
112
131
 
@@ -124,7 +143,7 @@ databases on localhost. #9753 [Trevor Wennblom]
124
143
 
125
144
  * Default to plural table name in Rails Generator if ActiveRecord is not present. Closes #8963 [evan]
126
145
 
127
- * Added rake routes for listing all the defined routes in the system #8795 [josh]
146
+ * Added rake routes for listing all the defined routes in the system. #8795 [Josh Peek]
128
147
 
129
148
  * db:create creates the database for the current environment if it's on localhost. db:create:all creates local databases for all environments. #8783 [matt]
130
149
 
@@ -136,7 +155,7 @@ databases on localhost. #9753 [Trevor Wennblom]
136
155
 
137
156
  * Added --skip-migration option to scaffold and resource generators #8656 [Michael Glaesemann]
138
157
 
139
- * Fix that FCGIs would leave log files open when asked to shut down by USR2 #3028 [sebastian.kanthak/josh]
158
+ * Fix that FCGIs would leave log files open when asked to shut down by USR2. #3028 [Sebastian Kanthak, Josh Peek]
140
159
 
141
160
  * Fixed that dispatcher preparation callbacks only run once in production mode. Mock Routes.reload so that dispatcher preparation callback tests run. [Rick]
142
161
 
@@ -158,7 +177,7 @@ databases on localhost. #9753 [Trevor Wennblom]
158
177
 
159
178
  * Scaffold generator tests. #8443 [pelle]
160
179
 
161
- * Generated scaffold functional tests use assert_difference. #8421 [norbert]
180
+ * Generated scaffold functional tests use assert_difference. #8421 [Norbert Crombach]
162
181
 
163
182
  * Update to Prototype 1.5.1. [Sam Stephenson]
164
183
 
data/Rakefile CHANGED
@@ -303,6 +303,7 @@ PKG_FILES = FileList[
303
303
  ] - [ 'test' ]
304
304
 
305
305
  spec = Gem::Specification.new do |s|
306
+ s.platform = Gem::Platform::RUBY
306
307
  s.name = 'rails'
307
308
  s.version = PKG_VERSION
308
309
  s.summary = "Web-application framework with template engine, control-flow layer, and ORM."
@@ -312,11 +313,11 @@ spec = Gem::Specification.new do |s|
312
313
  EOF
313
314
 
314
315
  s.add_dependency('rake', '>= 0.7.2')
315
- s.add_dependency('activesupport', '= 2.0.1' + PKG_BUILD)
316
- s.add_dependency('activerecord', '= 2.0.1' + PKG_BUILD)
317
- s.add_dependency('actionpack', '= 2.0.1' + PKG_BUILD)
318
- s.add_dependency('actionmailer', '= 2.0.1' + PKG_BUILD)
319
- s.add_dependency('activeresource', '= 2.0.1' + PKG_BUILD)
316
+ s.add_dependency('activesupport', '= 2.0.2' + PKG_BUILD)
317
+ s.add_dependency('activerecord', '= 2.0.2' + PKG_BUILD)
318
+ s.add_dependency('actionpack', '= 2.0.2' + PKG_BUILD)
319
+ s.add_dependency('actionmailer', '= 2.0.2' + PKG_BUILD)
320
+ s.add_dependency('activeresource', '= 2.0.2' + PKG_BUILD)
320
321
 
321
322
  s.rdoc_options << '--exclude' << '.'
322
323
  s.has_rdoc = false
@@ -32,7 +32,7 @@ module Rails
32
32
  end
33
33
 
34
34
  def freeze_edge_version
35
- if File.exists?(rails_vendor_root)
35
+ if File.exist?(rails_vendor_root)
36
36
  begin
37
37
  Dir[File.join(rails_vendor_root, 'REVISION_*')].first.scan(/_(\d+)$/).first.first
38
38
  rescue
@@ -1,4 +1,4 @@
1
- # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
1
+ # MySQL. Versions 4.1 and 5.0 are recommended.
2
2
  #
3
3
  # Install the MySQL driver:
4
4
  # gem install mysql
@@ -1,5 +1,5 @@
1
1
  # SQLite version 3.x
2
- # gem install sqlite3-ruby
2
+ # gem install sqlite3-ruby (not necessary on OS X Leopard)
3
3
  development:
4
4
  adapter: sqlite3
5
5
  database: db/development.sqlite3
@@ -24,6 +24,7 @@ module Rails
24
24
  File.exist?("#{RAILS_ROOT}/vendor/rails")
25
25
  end
26
26
 
27
+ # FIXME : Ruby 1.9
27
28
  def preinitialize
28
29
  load(preinitializer_path) if File.exists?(preinitializer_path)
29
30
  end
@@ -93,7 +94,7 @@ module Rails
93
94
  end
94
95
 
95
96
  def parse_gem_version(text)
96
- $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*'([!~<>=]*\s*[\d.]+)'/
97
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
97
98
  end
98
99
 
99
100
  private
@@ -10,6 +10,7 @@ config.cache_classes = true
10
10
  # Full error reports are disabled and caching is turned on
11
11
  config.action_controller.consider_all_requests_local = false
12
12
  config.action_controller.perform_caching = true
13
+ config.action_view.cache_template_loading = true
13
14
 
14
15
  # Enable serving of images, stylesheets, and javascripts from an asset server
15
16
  # config.action_controller.asset_host = "http://assets.example.com"
@@ -214,12 +214,12 @@ class Plugin
214
214
 
215
215
  def run_install_hook
216
216
  install_hook_file = "#{rails_env.root}/vendor/plugins/#{name}/install.rb"
217
- load install_hook_file if File.exists? install_hook_file
217
+ load install_hook_file if File.exist? install_hook_file
218
218
  end
219
219
 
220
220
  def run_uninstall_hook
221
221
  uninstall_hook_file = "#{rails_env.root}/vendor/plugins/#{name}/uninstall.rb"
222
- load uninstall_hook_file if File.exists? uninstall_hook_file
222
+ load uninstall_hook_file if File.exist? uninstall_hook_file
223
223
  end
224
224
 
225
225
  def install_using_export(options = {})
@@ -41,7 +41,7 @@ require RAILS_ROOT + '/config/environment'
41
41
  if code_or_file.nil?
42
42
  $stderr.puts "Run '#{$0} -h' for help."
43
43
  exit 1
44
- elsif File.exists?(code_or_file)
44
+ elsif File.exist?(code_or_file)
45
45
  eval(File.read(code_or_file))
46
46
  else
47
47
  eval(code_or_file)
@@ -2,7 +2,7 @@ module Rails
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -207,7 +207,7 @@ HELP
207
207
  # Determine full paths for source and destination files.
208
208
  source = source_path(relative_source)
209
209
  destination = destination_path(relative_destination)
210
- destination_exists = File.exists?(destination)
210
+ destination_exists = File.exist?(destination)
211
211
 
212
212
  # If source and destination are identical then we're done.
213
213
  if destination_exists and identical?(source, destination, &block)
@@ -306,7 +306,7 @@ HELP
306
306
  # Always directories which exist.
307
307
  def directory(relative_path)
308
308
  path = destination_path(relative_path)
309
- if File.exists?(path)
309
+ if File.exist?(path)
310
310
  logger.exists relative_path
311
311
  else
312
312
  logger.create relative_path
@@ -415,7 +415,7 @@ end_message
415
415
  # Remove a file if it exists and is a file.
416
416
  def file(relative_source, relative_destination, file_options = {})
417
417
  destination = destination_path(relative_destination)
418
- if File.exists?(destination)
418
+ if File.exist?(destination)
419
419
  logger.rm relative_destination
420
420
  unless options[:pretend]
421
421
  if options[:svn]
@@ -450,7 +450,7 @@ end_message
450
450
  until parts.empty?
451
451
  partial = File.join(parts)
452
452
  path = destination_path(partial)
453
- if File.exists?(path)
453
+ if File.exist?(path)
454
454
  if Dir[File.join(path, '*')].empty?
455
455
  logger.rmdir partial
456
456
  unless options[:pretend]
@@ -8,7 +8,7 @@ class AppGenerator < Rails::Generator::Base
8
8
 
9
9
  DATABASES = %w(mysql oracle postgresql sqlite2 sqlite3 frontbase)
10
10
 
11
- default_options :db => (ENV["RAILS_DEFAULT_DATABASE"] || "mysql"),
11
+ default_options :db => (ENV["RAILS_DEFAULT_DATABASE"] || "sqlite3"),
12
12
  :shebang => DEFAULT_SHEBANG, :freeze => false
13
13
  mandatory_options :source => "#{File.dirname(__FILE__)}/../../../../.."
14
14
 
@@ -128,7 +128,7 @@ class AppGenerator < Rails::Generator::Base
128
128
  end
129
129
 
130
130
  def mysql_socket_location
131
- MYSQL_SOCKET_LOCATIONS.find { |f| File.exists?(f) } unless RUBY_PLATFORM =~ /(:?mswin|mingw)/
131
+ MYSQL_SOCKET_LOCATIONS.find { |f| File.exist?(f) } unless RUBY_PLATFORM =~ /(:?mswin|mingw)/
132
132
  end
133
133
 
134
134
 
@@ -21,23 +21,23 @@ class <%= controller_class_name %>ControllerTest < ActionController::TestCase
21
21
  end
22
22
 
23
23
  def test_should_show_<%= file_name %>
24
- get :show, :id => 1
24
+ get :show, :id => <%= table_name %>(:one).id
25
25
  assert_response :success
26
26
  end
27
27
 
28
28
  def test_should_get_edit
29
- get :edit, :id => 1
29
+ get :edit, :id => <%= table_name %>(:one).id
30
30
  assert_response :success
31
31
  end
32
32
 
33
33
  def test_should_update_<%= file_name %>
34
- put :update, :id => 1, :<%= file_name %> => { }
34
+ put :update, :id => <%= table_name %>(:one).id, :<%= file_name %> => { }
35
35
  assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
36
36
  end
37
37
 
38
38
  def test_should_destroy_<%= file_name %>
39
39
  assert_difference('<%= class_name %>.count', -1) do
40
- delete :destroy, :id => 1
40
+ delete :destroy, :id => <%= table_name %>(:one).id
41
41
  end
42
42
 
43
43
  assert_redirected_to <%= table_name %>_path
@@ -141,7 +141,7 @@ module Rails
141
141
  end
142
142
 
143
143
  def self.supports_urandom?
144
- File.exists?('/dev/urandom')
144
+ File.exist?('/dev/urandom')
145
145
  end
146
146
 
147
147
  def self.supports_openssl?
@@ -16,7 +16,7 @@ namespace :db do
16
16
  # <<: *defaults
17
17
  next unless config['database']
18
18
  # Only connect to local databases
19
- if config['host'] == 'localhost' || config['host'].blank?
19
+ if %w( 127.0.0.1 localhost ).include?(config['host']) || config['host'].blank?
20
20
  create_database(config)
21
21
  else
22
22
  p "This task only creates local databases. #{config['database']} is on a remote host."
@@ -86,6 +86,14 @@ namespace :db do
86
86
  Rake::Task["db:schema:dump"].invoke if ActiveRecord::Base.schema_format == :ruby
87
87
  end
88
88
 
89
+ namespace :migrate do
90
+ desc 'Rollbacks the database one migration and re migrate up. If you want to rollback more than one step, define STEP=x'
91
+ task :redo => [ 'db:rollback', 'db:migrate' ]
92
+
93
+ desc 'Resets your database using your migrations for the current environment'
94
+ task :reset => ["db:drop", "db:create", "db:migrate"]
95
+ end
96
+
89
97
  desc 'Rolls the schema back to the previous version. Specify the number of steps with STEP=n'
90
98
  task :rollback => :environment do
91
99
  step = ENV['STEP'] ? ENV['STEP'].to_i : 1
@@ -127,14 +135,16 @@ namespace :db do
127
135
 
128
136
  desc "Raises an error if there are pending migrations"
129
137
  task :abort_if_pending_migrations => :environment do
130
- pending_migrations = ActiveRecord::Migrator.new(:up, 'db/migrate').pending_migrations
138
+ if defined? ActiveRecord
139
+ pending_migrations = ActiveRecord::Migrator.new(:up, 'db/migrate').pending_migrations
131
140
 
132
- if pending_migrations.any?
133
- puts "You have #{pending_migrations.size} pending migrations:"
134
- pending_migrations.each do |pending_migration|
135
- puts ' %4d %s' % [pending_migration.version, pending_migration.name]
141
+ if pending_migrations.any?
142
+ puts "You have #{pending_migrations.size} pending migrations:"
143
+ pending_migrations.each do |pending_migration|
144
+ puts ' %4d %s' % [pending_migration.version, pending_migration.name]
145
+ end
146
+ abort "Run `rake db:migrate` to update your database then try again."
136
147
  end
137
- abort "Run `rake db:migrate` to update your database then try again."
138
148
  end
139
149
  end
140
150
 
@@ -304,7 +314,7 @@ namespace :db do
304
314
 
305
315
  desc 'Prepare the test database and load the schema'
306
316
  task :prepare => %w(environment db:abort_if_pending_migrations) do
307
- if defined?(ActiveRecord::Base) && !ActiveRecord::Base.configurations.blank?
317
+ if defined?(ActiveRecord) && !ActiveRecord::Base.configurations.blank?
308
318
  Rake::Task[{ :sql => "db:test:clone_structure", :ruby => "db:test:clone" }[ActiveRecord::Base.schema_format]].invoke
309
319
  end
310
320
  end
@@ -4,6 +4,7 @@ namespace :rails do
4
4
  task :gems do
5
5
  deps = %w(actionpack activerecord actionmailer activesupport activeresource)
6
6
  require 'rubygems'
7
+ require 'rubygems/gem_runner'
7
8
  Gem.manage_gems
8
9
 
9
10
  rails = (version = ENV['VERSION']) ?
@@ -21,14 +22,19 @@ namespace :rails do
21
22
  rm_rf "vendor/rails"
22
23
  mkdir_p "vendor/rails"
23
24
 
24
- chdir("vendor/rails") do
25
- rails.dependencies.select { |g| deps.include? g.name }.each do |g|
26
- Gem::GemRunner.new.run(["unpack", "-v", "#{g.version_requirements}", "#{g.name}"])
27
- mv(Dir.glob("#{g.name}*").first, g.name)
28
- end
25
+ begin
26
+ chdir("vendor/rails") do
27
+ rails.dependencies.select { |g| deps.include? g.name }.each do |g|
28
+ Gem::GemRunner.new.run(["unpack", g.name, "--version", g.version_requirements.to_s])
29
+ mv(Dir.glob("#{g.name}*").first, g.name)
30
+ end
29
31
 
30
- Gem::GemRunner.new.run(["unpack", "-v", "=#{version}", "rails"])
31
- FileUtils.mv(Dir.glob("rails*").first, "railties")
32
+ Gem::GemRunner.new.run(["unpack", "rails", "--version", "=#{version}"])
33
+ FileUtils.mv(Dir.glob("rails*").first, "railties")
34
+ end
35
+ rescue Exception
36
+ rm_rf "vendor/rails"
37
+ raise
32
38
  end
33
39
  end
34
40
 
@@ -1,4 +1,10 @@
1
1
  task :default => :test
2
2
  task :environment do
3
3
  require(File.join(RAILS_ROOT, 'config', 'environment'))
4
- end
4
+ end
5
+
6
+ require 'rails_generator/secret_key_generator'
7
+ desc 'Generate a crytographically secure secret key. This is typically used to generate a secret for cookie sessions. Pass a unique identifier to the generator using ID="some unique identifier" for greater security.'
8
+ task :secret do
9
+ puts Rails::SecretKeyGenerator.new(ENV['ID']).generate_secret
10
+ end
metadata CHANGED
@@ -1,33 +1,79 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: rails
5
3
  version: !ruby/object:Gem::Version
6
- version: 2.0.1
7
- date: 2007-12-07 00:00:00 -06:00
8
- summary: Web-application framework with template engine, control-flow layer, and ORM.
9
- require_paths:
10
- - lib
11
- email: david@loudthinking.com
12
- homepage: http://www.rubyonrails.org
13
- rubyforge_project: rails
14
- description: Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
15
- autorequire:
16
- default_executable: rails
17
- bindir: bin
18
- has_rdoc: false
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: 2.0.2
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - David Heinemeier Hansson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2007-12-20 00:00:00 -06:00
13
+ default_executable: rails
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.2
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: activesupport
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - "="
30
+ - !ruby/object:Gem::Version
31
+ version: 2.0.2
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: activerecord
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.0.2
41
+ version:
42
+ - !ruby/object:Gem::Dependency
43
+ name: actionpack
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.0.2
50
+ version:
51
+ - !ruby/object:Gem::Dependency
52
+ name: actionmailer
53
+ version_requirement:
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - "="
57
+ - !ruby/object:Gem::Version
58
+ version: 2.0.2
59
+ version:
60
+ - !ruby/object:Gem::Dependency
61
+ name: activeresource
62
+ version_requirement:
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "="
66
+ - !ruby/object:Gem::Version
67
+ version: 2.0.2
68
+ version:
69
+ description: Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
70
+ email: david@loudthinking.com
71
+ executables:
72
+ - rails
73
+ extensions: []
74
+
75
+ extra_rdoc_files: []
76
+
31
77
  files:
32
78
  - bin
33
79
  - builtin
@@ -269,71 +315,32 @@ files:
269
315
  - lib/tasks/tmp.rake
270
316
  - lib/test_help.rb
271
317
  - lib/webrick_server.rb
272
- test_files: []
273
-
318
+ has_rdoc: false
319
+ homepage: http://www.rubyonrails.org
320
+ post_install_message:
274
321
  rdoc_options:
275
322
  - --exclude
276
323
  - .
277
- extra_rdoc_files: []
278
-
279
- executables:
280
- - rails
281
- extensions: []
282
-
324
+ require_paths:
325
+ - lib
326
+ required_ruby_version: !ruby/object:Gem::Requirement
327
+ requirements:
328
+ - - ">="
329
+ - !ruby/object:Gem::Version
330
+ version: "0"
331
+ version:
332
+ required_rubygems_version: !ruby/object:Gem::Requirement
333
+ requirements:
334
+ - - ">="
335
+ - !ruby/object:Gem::Version
336
+ version: "0"
337
+ version:
283
338
  requirements: []
284
339
 
285
- dependencies:
286
- - !ruby/object:Gem::Dependency
287
- name: rake
288
- version_requirement:
289
- version_requirements: !ruby/object:Gem::Version::Requirement
290
- requirements:
291
- - - ">="
292
- - !ruby/object:Gem::Version
293
- version: 0.7.2
294
- version:
295
- - !ruby/object:Gem::Dependency
296
- name: activesupport
297
- version_requirement:
298
- version_requirements: !ruby/object:Gem::Version::Requirement
299
- requirements:
300
- - - "="
301
- - !ruby/object:Gem::Version
302
- version: 2.0.1
303
- version:
304
- - !ruby/object:Gem::Dependency
305
- name: activerecord
306
- version_requirement:
307
- version_requirements: !ruby/object:Gem::Version::Requirement
308
- requirements:
309
- - - "="
310
- - !ruby/object:Gem::Version
311
- version: 2.0.1
312
- version:
313
- - !ruby/object:Gem::Dependency
314
- name: actionpack
315
- version_requirement:
316
- version_requirements: !ruby/object:Gem::Version::Requirement
317
- requirements:
318
- - - "="
319
- - !ruby/object:Gem::Version
320
- version: 2.0.1
321
- version:
322
- - !ruby/object:Gem::Dependency
323
- name: actionmailer
324
- version_requirement:
325
- version_requirements: !ruby/object:Gem::Version::Requirement
326
- requirements:
327
- - - "="
328
- - !ruby/object:Gem::Version
329
- version: 2.0.1
330
- version:
331
- - !ruby/object:Gem::Dependency
332
- name: activeresource
333
- version_requirement:
334
- version_requirements: !ruby/object:Gem::Version::Requirement
335
- requirements:
336
- - - "="
337
- - !ruby/object:Gem::Version
338
- version: 2.0.1
339
- version:
340
+ rubyforge_project: rails
341
+ rubygems_version: 1.0.0
342
+ signing_key:
343
+ specification_version: 2
344
+ summary: Web-application framework with template engine, control-flow layer, and ORM.
345
+ test_files: []
346
+