Sha256: a5907563dabbac57c617e2c669f2bd26d908aa78f09fa6964256635773f3591b

Contents?: true

Size: 375 Bytes

Versions: 10

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.6-p398 1.9.1-p243 1.9.2-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

10 entries across 10 versions & 2 rubygems

Version Path
rake-compiler-0.8.3 tasks/bootstrap.rake
rake-compiler-0.8.2 tasks/bootstrap.rake
rake-compiler-sgonyea-0.8.1 tasks/bootstrap.rake
rake-compiler-0.8.1 tasks/bootstrap.rake
rake-compiler-0.8.0 tasks/bootstrap.rake
rake-compiler-0.7.9 tasks/bootstrap.rake
rake-compiler-0.7.8 tasks/bootstrap.rake
rake-compiler-0.7.7 tasks/bootstrap.rake
rake-compiler-0.7.6 tasks/bootstrap.rake
rake-compiler-0.7.5 tasks/bootstrap.rake