Skip to content

Commit

Permalink
Homogenize gemspecs and remove the deprecated autorequire
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Feb 4, 2010
1 parent a92e694 commit ef438c5
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions activeresource.gemspec
@@ -1,24 +1,22 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activeresource'
s.version = '3.0.0.beta'
s.summary = "Think Active Record for web resources."
s.description = %q{Wraps web resources in model classes that can be manipulated through XML over REST.}
s.platform = Gem::Platform::RUBY
s.name = 'activeresource'
s.version = '3.0.0.beta'
s.summary = 'REST-model framework (part of Rails).'
s.description = 'REST-model framework (part of Rails).'

s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']

s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('activemodel', '= 3.0.0.beta')
s.author = 'David Heinemeier Hansson'
s.email = 'david@loudthinking.com'
s.homepage = 'http://www.rubyonrails.org'
s.rubyforge_project = 'activeresource'

s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']
s.require_path = 'lib'
s.autorequire = 'active_resource'

s.has_rdoc = true
s.has_rdoc = true
s.extra_rdoc_files = %w( README )
s.rdoc_options.concat ['--main', 'README']

s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.homepage = "http://www.rubyonrails.org"
s.rubyforge_project = "activeresource"
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('activemodel', '= 3.0.0.beta')
end

0 comments on commit ef438c5

Please sign in to comment.