rails/activeresource/activeresource.gemspec

23 lines
769 B
Ruby

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activeresource'
s.version = '3.0.0.beta1'
s.summary = 'REST-model framework (part of Rails).'
s.description = 'REST-model framework (part of Rails).'
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.has_rdoc = true
s.extra_rdoc_files = %w( README )
s.rdoc_options.concat ['--main', 'README']
s.add_dependency('activesupport', '= 3.0.0.beta1')
s.add_dependency('activemodel', '= 3.0.0.beta1')
end