Changeset 111

Show
Ignore:
Timestamp:
02/06/2007 01:12:00 (22 months ago)
Author:
why
Message:
  • Rakefile: add 'jruby' as gem platform and update to 0.5.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Rakefile

    r109 r111  
    99NAME = "hpricot" 
    1010REV = `svn info`[/Revision: (\d+)/, 1] rescue nil 
    11 VERS = ENV['VERSION'] || "0.4" + (REV ? ".#{REV}" : "") 
     11VERS = ENV['VERSION'] || "0.5" + (REV ? ".#{REV}" : "") 
    1212PKG = "#{NAME}-#{VERS}" 
    1313BIN = "*.{bundle,jar,so,obj,pdb,lib,def,exp}" 
     
    165165 
    166166JRubySpec = SPEC.dup 
    167 JRubySpec.platform = Gem::Platform::RUBY 
     167JRubySpec.platform = 'jruby' 
    168168JRubySpec.files = PKG_FILES + ['lib/hpricot_scan.jar'] 
    169169JRubySpec.extensions = []