ffi-clang

FORK: Ruby FFI bindings for my custom patched clang 8.0.
git clone https://git.neptards.moe/neptards/ffi-clang.git
Log | Files | Refs | README

Rakefile (255B)


      1 require "bundler/gem_tasks"
      2 require "rspec/core/rake_task"
      3 
      4 RSpec::Core::RakeTask.new(:spec) do |task|
      5 	begin
      6 		require('simplecov/version')
      7 		task.rspec_opts = %w{--require simplecov} if ENV['COVERAGE']
      8 	rescue LoadError
      9 	end
     10 end
     11 
     12 task :default => :spec