Skip to content

Commit

Permalink
Fix freeze_gems so that the latest rails version is dumped by default
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3191 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
seckar committed Nov 28, 2005
1 parent e7219e9 commit ca7341d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Fix freeze_gems so that the latest rails version is dumped by default. [Nicholas Seckar]

* script/plugin: handle root paths and plugin names which contain spaces. #2995 [justin@aspect.net]

* Model generator: correct relative path to test_helper in unit test. [Jeremy Kemper]
Expand Down
5 changes: 3 additions & 2 deletions railties/lib/tasks/framework.rake
Expand Up @@ -8,6 +8,7 @@ task :freeze_gems do
else
Gem.cache.search('rails').sort_by { |g| g.version }.last
end
version ||= rails.version

unless rails
puts "No rails gem #{version} is installed. Do 'gem list rails' to see what you have available."
Expand All @@ -21,8 +22,8 @@ task :freeze_gems do
rails.dependencies.select { |g| deps.include? g.name }.each do |g|
system "cd vendor/rails; gem unpack -v '#{g.version_requirements}' #{g.name}; mv #{g.name}* #{g.name}"
end
system "cd vendor/rails; gem unpack -v '= #{version}' rails"

system "cd vendor/rails; gem unpack -v '=#{version}' rails"
FileUtils.mv(Dir.glob("vendor/rails/rails*").first, "vendor/rails/railties")
end

Expand Down

0 comments on commit ca7341d

Please sign in to comment.