Sha256: ccf8fc647197fc1202f3067f90d345f3cc52dfb69f5f31bd0370838010b1c5c6
Contents?: true
Size: 444 Bytes
Versions: 2
Compression:
Stored size: 444 Bytes
Contents
begin gem 'rake-compiler', '~>1.2' require 'rake/extensiontask' def gemspec @gemspec ||= Gem::Specification.load(File.expand_path('../do_mysql.gemspec', __dir__)) end Rake::ExtensionTask.new('do_mysql', gemspec) do |ext| ext.lib_dir = "lib/#{gemspec.name}" # automatically add build options to avoid need of manual input end rescue LoadError warn 'To compile, install rake-compiler (gem install rake-compiler)' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sbf-do_mysql-0.11.0 | tasks/compile.rake |
sbf-do_mysql-0.10.17 | tasks/compile.rake |