Sha256: b2cadbd785c30f42fbf27847be258b8649718f941aa7f11e083e62ab2a830384

Contents?: true

Size: 489 Bytes

Versions: 5

Compression:

Stored size: 489 Bytes

Contents

require 'mkmf'

have_header('Dummy Makefile')

unless find_executable('cargo')
  puts "You need to have Rust installed for this gem to build natively."
  puts "Please install the latest nightly build:"
  puts
  puts "curl -sSf https://static.rust-lang.org/rustup.sh | sudo sh -s -- --channel=nightly"
  puts
  END { puts "Exiting..."}
end

Dir.chdir(File.expand_path("../../", File.dirname(__FILE__))) do
  %x(rake build_src)
  %x(rake clean_src)
end

create_makefile('faster_path/dummy')

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
faster_path-0.1.10 ext/faster_path/extconf.rb
faster_path-0.1.8 ext/faster_path/extconf.rb
faster_path-0.1.7 ext/faster_path/extconf.rb
faster_path-0.1.6 ext/faster_path/extconf.rb
faster_path-0.1.5 ext/faster_path/extconf.rb