aboutsummaryrefslogtreecommitdiffstats
path: root/railties/railties.gemspec
blob: a060c3c301870484f6376eccbcd117c6a1a71c85 (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
27
28
Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.name = 'railties'
  s.version = '3.0.pre'
  s.summary = "Controls boot-up, rake tasks and generators for the Rails framework."
  s.description = <<-EOF
    Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
    on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
  EOF

  s.add_dependency('rake', '>= 0.8.3')
  s.add_dependency('activesupport',    '= 3.0.pre')
  s.add_dependency('actionpack',       '= 3.0.pre')

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

  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.author = "David Heinemeier Hansson"
  s.email = "david@loudthinking.com"
  s.homepage = "http://www.rubyonrails.org"
  s.rubyforge_project = "rails"
end