Sha256: 4ed73174142d4414ee3da87465af06bfec4cecf187c5c9e5544530eb932b2d68

Contents?: true

Size: 398 Bytes

Versions: 5

Compression:

Stored size: 398 Bytes

Contents

Dir.chdir File.expand_path('../..', __FILE__) do # chdir to project root
  Dir['ext/**/extconf.rb'].each do |extconf|
    Dir.chdir(File.dirname(extconf)) do
      system('ruby extconf.rb') && system('make') or abort "failed compiling #{extconf}"
    end
  end
end

$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
$:.unshift File.join(File.dirname(__FILE__), '..', 'ext')
require 'rspec'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fspath-mac-3.2.1 spec/spec_helper.rb
fspath-mac-3.2.0 spec/spec_helper.rb
fspath-mac-3.1.2 spec/spec_helper.rb
fspath-mac-3.1.1 spec/spec_helper.rb
fspath-mac-3.1.0 spec/spec_helper.rb