Changeset 778

Show
Ignore:
Timestamp:
03/20/08 10:19:53 (6 months ago)
Author:
seancribbs
Message:

#632 Fixed incompatibility with RubyGems? >= 0.9.5 that broke radiant:freeze:gems rake task. [Michael Klett]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/radiant/CHANGELOG

    r771 r778  
    22 
    33=== SVN 
     4* Fixed incompatibility with RubyGems >= 0.9.5 that broke radiant:freeze:gems 
     5rake task. [Michael Klett] 
     6* Fixed problem with the list of templates containing duplicates in the 
     7db: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] 
    410* Fix Ruby 1.8.5 compatibility issue with Dir[]. [Sean Cribbs] 
    511* Backup old environment.rb when copying new version. [Sean Cribbs] 
  • trunk/radiant/CONTRIBUTORS

    r767 r778  
    66 
    77=== SVN 
     8* Michael Klett 
    89* Matthew Elder 
    910* Nick Plante 
  • trunk/radiant/lib/tasks/framework.rake

    r775 r778  
    66      task :gems do 
    77        require 'rubygems' 
     8        require 'rubygems/gem_runner' 
    89        Gem.manage_gems 
    910 
     
    2324 
    2425        chdir("vendor") do 
    25           Gem::GemRunner.new.run(["unpack", "-v", "=#{version}", "radiant"]) 
     26          Gem::GemRunner.new.run(["unpack", "radiant", "--version", "=#{version}"]) 
    2627          FileUtils.mv(Dir.glob("radiant*").first, "radiant") 
    2728        end