aboutsummaryrefslogblamecommitdiffstats
path: root/activeresource/activeresource.gemspec
blob: ea3a1b436a62a62d9f2e5560080a3933409a3d01 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                            
 
                             

                                     
                         

                                                                                                                            
 

                   
                                      
 


                                                    
 
                                                                                                 
                        
 

                                                  
 

                                            
   
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip

Gem::Specification.new do |s|
  s.platform    = Gem::Platform::RUBY
  s.name        = 'activeresource'
  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.license = 'MIT'

  s.required_ruby_version = '>= 1.8.7'

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

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

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

  s.add_dependency('activesupport', version)
  s.add_dependency('activemodel',   version)
end