Sha256: e6e97a674f4097d41b48b78bdcefcc18963f0eed45ff09a51759a0796db3623b

Contents?: true

Size: 501 Bytes

Versions: 3

Compression:

Stored size: 501 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
  system("rake build_src")
  system("rake clean_src")
end

create_makefile('faster_path/dummy')

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
faster_path-0.1.4 ext/faster_path/extconf.rb
faster_path-0.1.3 ext/faster_path/extconf.rb
faster_path-0.1.2 ext/faster_path/extconf.rb