diff options
author | Rick Olson <technoweenie@gmail.com> | 2008-03-30 02:17:28 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2008-03-30 02:17:28 +0000 |
commit | 088ef182e3006294b8f0e9b185d272a777c4437a (patch) | |
tree | 11b760af7a23bb5280f5aef5dc61350d0ea302f1 /railties/CHANGELOG | |
parent | 81286f858770e0b95e15af37f19156b044ec6a95 (diff) | |
download | rails-088ef182e3006294b8f0e9b185d272a777c4437a.tar.gz rails-088ef182e3006294b8f0e9b185d272a777c4437a.tar.bz2 rails-088ef182e3006294b8f0e9b185d272a777c4437a.zip |
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
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 17 |
1 files changed, 17 insertions, 0 deletions
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] |