diff options
author | Carlhuda <carlhuda@Carlhudas-iMac.local> | 2009-11-30 16:46:09 -0800 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2009-12-02 11:35:47 -0800 |
commit | 8ff310aef4e7ed424429059d10e3af0f169323fb (patch) | |
tree | 88e27c97d9e3adbc91c875f372bbcd0b01fa122d /railties/railties.gemspec | |
parent | abfc4dad3ebb17eccd32d1f1eb8a3e9c0f6e6e4e (diff) | |
download | rails-8ff310aef4e7ed424429059d10e3af0f169323fb.tar.gz rails-8ff310aef4e7ed424429059d10e3af0f169323fb.tar.bz2 rails-8ff310aef4e7ed424429059d10e3af0f169323fb.zip |
Break up rails and railties:
* rails is now a metagem (gem install rails works as it does now)
* railties includes the glue layer, so you can easily declare dependencies
on railties, actionpack, and actionmailer and not get ActiveRecord's rake
tasks, initializers, etc.
Diffstat (limited to 'railties/railties.gemspec')
-rw-r--r-- | railties/railties.gemspec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/railties/railties.gemspec b/railties/railties.gemspec new file mode 100644 index 0000000000..a060c3c301 --- /dev/null +++ b/railties/railties.gemspec @@ -0,0 +1,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 |