aboutsummaryrefslogtreecommitdiffstats
path: root/rails.gemspec
blob: 58a08f1446f91c3f1eda4fbdf7369e3b79abd18d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version = File.read("RAILS_VERSION").strip

Gem::Specification.new do |s|
  s.platform    = Gem::Platform::RUBY
  s.name        = 'rails'
  s.version     = version
  s.summary     = 'Full-stack web application framework.'
  s.description = 'Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.'
  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 = []
  s.require_path = []

  s.add_dependency('activesupport',    version)
  s.add_dependency('actionpack',       version)
  s.add_dependency('activerecord',     version)
  s.add_dependency('activeresource',   version)
  s.add_dependency('actionmailer',     version)
  s.add_dependency('railties',         version)
  s.add_dependency('bundler',          '>= 0.9.8')
end