diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-04-01 13:46:04 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-04-01 13:46:04 -0700 |
commit | d956003fa499d22689db8a10712fc7bcb9dbc5c8 (patch) | |
tree | b23b0f37af9f0a4c750809bbb145fcdef5e65130 /activemodel | |
parent | 9b71c55d3d65002765726d2328dcc48361bba7e5 (diff) | |
download | rails-d956003fa499d22689db8a10712fc7bcb9dbc5c8.tar.gz rails-d956003fa499d22689db8a10712fc7bcb9dbc5c8.tar.bz2 rails-d956003fa499d22689db8a10712fc7bcb9dbc5c8.zip |
Neat and tidy, I say
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/activemodel.gemspec | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/activemodel/activemodel.gemspec b/activemodel/activemodel.gemspec index 8c3f2bfa7f..9695911398 100644 --- a/activemodel/activemodel.gemspec +++ b/activemodel/activemodel.gemspec @@ -1,4 +1,4 @@ -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 @@ -6,14 +6,15 @@ Gem::Specification.new do |s| 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 |