aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/actionpack.gemspec
blob: ed5b7e1e93e5a91b1d3dae3b1a584f9f4925bab7 (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        = 'actionpack'
  s.version     = version
  s.summary     = 'Web-flow and rendering framework putting the VC in MVC (part of Rails).'
  s.description = 'Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.'
  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 = 'actionpack'

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

  s.has_rdoc = true

  s.add_dependency('activesupport', version)
  s.add_dependency('activemodel',   version)
  s.add_dependency('rack',          '~> 1.1.0')
  s.add_dependency('rack-test',     '~> 0.5.0')
  s.add_dependency('rack-mount',    '~> 0.6.0')
  s.add_dependency('erubis',        '~> 2.6.5')
end