Skip to content

Commit

Permalink
Neat and tidy, I say
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Apr 1, 2010
1 parent 9b71c55 commit d956003
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
13 changes: 7 additions & 6 deletions activemodel/activemodel.gemspec
@@ -1,19 +1,20 @@
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activemodel'
s.version = version
s.summary = 'A toolkit for building modeling frameworks (part of Rails).'
s.description = 'A toolkit for building modeling frameworks like Active Record and Active Resource. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.'

s.required_ruby_version = '>= 1.8.7'

s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.homepage = "http://www.rubyonrails.org"
s.rubyforge_project = "activemodel"
s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'
s.rubyforge_project = 'activemodel'

s.files = Dir["CHANGELOG", "MIT-LICENSE", "README", "lib/**/*"]
s.files = Dir['CHANGELOG', 'MIT-LICENSE', 'README', 'lib/**/*']
s.require_path = 'lib'

s.has_rdoc = true
Expand Down
1 change: 1 addition & 0 deletions activerecord/activerecord.gemspec
Expand Up @@ -6,6 +6,7 @@ Gem::Specification.new do |s|
s.version = version
s.summary = 'Object-relational mapper framework (part of Rails).'
s.description = 'Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.'

s.required_ruby_version = '>= 1.8.7'

s.author = 'David Heinemeier Hansson'
Expand Down
1 change: 1 addition & 0 deletions activeresource/activeresource.gemspec
Expand Up @@ -6,6 +6,7 @@ Gem::Specification.new do |s|
s.version = version
s.summary = 'REST modeling framework (part of Rails).'
s.description = 'REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.'

s.required_ruby_version = '>= 1.8.7'

s.author = 'David Heinemeier Hansson'
Expand Down
1 change: 1 addition & 0 deletions activesupport/activesupport.gemspec
Expand Up @@ -6,6 +6,7 @@ Gem::Specification.new do |s|
s.version = version
s.summary = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.'
s.description = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.'

s.required_ruby_version = '>= 1.8.7'

s.author = 'David Heinemeier Hansson'
Expand Down
17 changes: 9 additions & 8 deletions rails.gemspec
Expand Up @@ -6,7 +6,8 @@ Gem::Specification.new do |s|
s.version = version
s.summary = 'Full-stack web application framework.'
s.description = 'Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.'
s.required_ruby_version = '>= 1.8.7'

s.required_ruby_version = '>= 1.8.7'
s.required_rubygems_version = ">= 1.3.6"

s.author = 'David Heinemeier Hansson'
Expand All @@ -17,11 +18,11 @@ Gem::Specification.new do |s|
s.files = []
s.require_path = []

s.add_dependency('activesupport', version)
s.add_dependency('actionpack', version)
s.add_dependency('activerecord', version)
s.add_dependency('activeresource', version)
s.add_dependency('actionmailer', version)
s.add_dependency('railties', version)
s.add_dependency('bundler', '>= 0.9.14')
s.add_dependency('activesupport', version)
s.add_dependency('actionpack', version)
s.add_dependency('activerecord', version)
s.add_dependency('activeresource', version)
s.add_dependency('actionmailer', version)
s.add_dependency('railties', version)
s.add_dependency('bundler', '>= 0.9.14')
end

0 comments on commit d956003

Please sign in to comment.