We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c2402 commit b7195ceCopy full SHA for b7195ce
Gemfile
@@ -14,6 +14,7 @@ end
14
group :development do
15
gem 'pry'
16
gem 'eventmachine' unless RUBY_PLATFORM =~ /mswin|mingw/
17
+ gem 'rake-compiler-dock', '~> 0.4.2'
18
end
19
20
platforms :rbx do
tasks/compile.rake
@@ -86,3 +86,12 @@ else
86
Rake::Task['cross'].prerequisites.unshift 'vendor:mysql:cross'
87
88
89
+
90
+desc "Build the windows binary gems per rake-compiler-dock"
91
+task 'gem:windows' do
92
+ require 'rake_compiler_dock'
93
+ RakeCompilerDock.sh <<-EOT
94
+ bundle install "--without=test benchmarks development rbx" &&
95
+ rake cross native gem
96
+ EOT
97
+end
0 commit comments