From 8ff310aef4e7ed424429059d10e3af0f169323fb Mon Sep 17 00:00:00 2001 From: Carlhuda Date: Mon, 30 Nov 2009 16:46:09 -0800 Subject: 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. --- rails.gemspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 rails.gemspec (limited to 'rails.gemspec') diff --git a/rails.gemspec b/rails.gemspec new file mode 100644 index 0000000000..878a342903 --- /dev/null +++ b/rails.gemspec @@ -0,0 +1,25 @@ +Gem::Specification.new do |s| + s.platform = Gem::Platform::RUBY + s.name = 'rails' + s.version = '3.0.pre' + s.summary = "Web-application framework with template engine, control-flow layer, and ORM." + 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('activesupport', '= 3.0.pre') + s.add_dependency('actionpack', '= 3.0.pre') + s.add_dependency('activerecord', '= 3.0.pre') + s.add_dependency('activeresource', '= 3.0.pre') + s.add_dependency('actionmailer', '= 3.0.pre') + s.add_dependency('railties', '= 3.0.pre') + + s.rdoc_options << '--exclude' << '.' + s.has_rdoc = false + + s.author = "David Heinemeier Hansson" + s.email = "david@loudthinking.com" + s.homepage = "http://www.rubyonrails.org" + s.rubyforge_project = "rails" +end -- cgit v1.2.3