Sha256: 09511951fb04e44c1ae8d97e11072974e8bc8f7f4c02077375c3d49721f1a66c

Contents?: true

Size: 375 Bytes

Versions: 43

Compression:

Stored size: 375 Bytes

Contents

desc 'Ensure all the cross compiled versions are installed'
task :bootstrap do
  fail "Sorry, this only works on OSX and Linux" if RUBY_PLATFORM =~ /mswin|mingw/

  versions = %w(1.8.7-p371 1.9.3-p392 2.0.0-p0)

  versions.each do |version|
    puts "[INFO] Attempt to cross-compile Ruby #{version}"
    ruby "-Ilib bin/rake-compiler cross-ruby VERSION=#{version}"
  end
end

Version data entries

43 entries across 43 versions & 3 rubygems

Version Path
rake-compiler-0.9.1 tasks/bootstrap.rake
rake-compiler-0.9.0 tasks/bootstrap.rake
rake-compiler-0.9.0.pre.1 tasks/bootstrap.rake