Changeset 778
- Timestamp:
- 03/20/08 10:19:53 (6 months ago)
- Files:
-
- trunk/radiant/CHANGELOG (modified) (1 diff)
- trunk/radiant/CONTRIBUTORS (modified) (1 diff)
- trunk/radiant/lib/tasks/framework.rake (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/radiant/CHANGELOG
r771 r778 2 2 3 3 === SVN 4 * Fixed incompatibility with RubyGems >= 0.9.5 that broke radiant:freeze:gems 5 rake task. [Michael Klett] 6 * Fixed problem with the list of templates containing duplicates in the 7 db:bootstrap rake task when not running in instance mode. [John Long] 8 * Update Subversion URL so rake radiant:freeze:edge works. [John Long] 9 * Add AVLUX to list of links in Styled Blog template. [John Long] 4 10 * Fix Ruby 1.8.5 compatibility issue with Dir[]. [Sean Cribbs] 5 11 * Backup old environment.rb when copying new version. [Sean Cribbs] trunk/radiant/CONTRIBUTORS
r767 r778 6 6 7 7 === SVN 8 * Michael Klett 8 9 * Matthew Elder 9 10 * Nick Plante trunk/radiant/lib/tasks/framework.rake
r775 r778 6 6 task :gems do 7 7 require 'rubygems' 8 require 'rubygems/gem_runner' 8 9 Gem.manage_gems 9 10 … … 23 24 24 25 chdir("vendor") do 25 Gem::GemRunner.new.run(["unpack", " -v", "=#{version}", "radiant"])26 Gem::GemRunner.new.run(["unpack", "radiant", "--version", "=#{version}"]) 26 27 FileUtils.mv(Dir.glob("radiant*").first, "radiant") 27 28 end
