From 088ef182e3006294b8f0e9b185d272a777c4437a Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sun, 30 Mar 2008 02:17:28 +0000 Subject: Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9140 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'railties/CHANGELOG') diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 672131b96e..7950e6a14f 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,22 @@ *SVN* +* Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [rick] + + Rails::Initializer.run do |config| + config.gems "bj" + config.gems "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" + config.gems "aws-s3", :lib => "aws/s3" + end + + # List required gems. + rake gems + + # Install all required gems: + rake gems:install + + # Unpack specified gem to vendor/gems/gem_name-x.x.x + rake gems:unpack GEM=bj + * Removed the default .htaccess configuration as there are so many good deployment options now (kept it as an example in README) [DHH] * config.time_zone accepts TZInfo::Timezone identifiers as well as Rails TimeZone identifiers [Geoff Buesing] -- cgit v1.2.3