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

                                     
                               

                                                                                        
                                      
 









                                                                                                                    



                                      
                                               
                                                

                                                    
   
Gem::Specification.new do |s|
  s.platform    = Gem::Platform::RUBY
  s.name        = 'railties'
  s.version     = '3.0.0.beta1'
  s.summary     = 'Controls boot-up, rake tasks and generators for the Rails framework.'
  s.description = 'Controls boot-up, rake tasks and generators for the Rails framework.'
  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 = 'rails'

  s.files              = Dir['CHANGELOG', 'README', 'bin/**/*', 'builtin/**/*', 'guides/**/*', 'lib/**/{*,.[a-z]*}']
  s.require_path       = 'lib'
  s.bindir             = 'bin'
  s.executables        = ['rails']
  s.default_executable = 'rails'

  s.rdoc_options << '--exclude' << '.'
  s.has_rdoc = false

  s.add_dependency('rake',          '>= 0.8.3')
  s.add_dependency('thor',          '~> 0.13.4')
  s.add_dependency('activesupport', '= 3.0.0.beta1')
  s.add_dependency('actionpack',    '= 3.0.0.beta1')
end