forked from cucumber-attic/gherkin2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgems.rake
35 lines (30 loc) · 1.02 KB
/
gems.rake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
namespace :gems do
task :win do
unless File.directory?(File.expand_path('~/.rake-compiler'))
STDERR.puts "[ERROR] You must install MinGW rubies to build gherkin gems for Windows. See README.rdoc"
exit(1)
end
# rvm and mingw ruby versions have to match to avoid errors
sh "rvm 1.8.6-p399@cucumber rake cross compile RUBY_CC_VERSION=1.8.6"
sh "rvm 1.9.1-p243@cucumber rake cross compile RUBY_CC_VERSION=1.9.1"
# This will copy the .so files to the proper place
sh "rake cross compile RUBY_CC_VERSION=1.8.6:1.9.1"
end
desc 'Prepare JRuby binares'
task :jruby => [:jar] do
sh "rvm jruby@cucumber exec rspec spec"
end
desc 'Prepare IronRuby binaries'
task :ironruby => [:jruby, 'ikvm:dll', 'ikvm:copy_ikvm_dlls']
task :sanity do
raise "The jruby gem looks too small" if File.stat("release/gherkin-#{Gherkin::VERSION}-java.gem").size < 1000000
end
desc "Prepare binaries for all gems"
task :prepare => [
:clean,
:spec,
:win,
:jruby,
:ironruby
]
end