This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler' | |
begin | |
Bundler.setup(:default, :development) | |
rescue Bundler::BundlerError => e | |
$stderr.puts e.message | |
$stderr.puts "Run `bundle install` to install missing gems" | |
exit e.status_code | |
end | |
require 'rspec/core' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vat: | |
default_zone: 'france_met' | |
zones: | |
france_met: | |
default: 'vat_normal' | |
values: | |
- | |
code: 'vat_normal' | |
value: 19.6 | |
domtom: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'mkmf' | |
have_header("pthread.h") | |
create_makefile("pthread") | |
# to use the pthread just run | |
# ruby extconf.rb | |
# make | |
# make install |