Sha256: a090be773bab0831f7ae385de364490fb1a09ad46bbdabac60c7a483efc5f261
Contents?: true
Size: 740 Bytes
Versions: 9
Compression:
Stored size: 740 Bytes
Contents
### # wxRuby3 rake file # Copyright (c) M.J.N. Corino, The Netherlands ### namespace :wxruby do if WXRuby3.is_configured? require_relative './install' task :install => [ 'wxruby:build', *WXRuby3::ALL_RUBY_LIB_FILES, 'bin:build' ] do | t, args | WXRuby3::Install.define(t, args) WXRuby3::Install.nowrite(ENV['NO_HARM'] ? true : false) do WXRuby3::Install.install Rake::Task['wxruby:post:install'].invoke end end task :uninstall => WXRuby3::BUILD_CFG do | t, args | WXRuby3::Install.define(t, args) WXRuby3::Install.nowrite(ENV['NO_HARM'] ? true : false) do Rake::Task['wxruby:pre:uninstall'].invoke WXRuby3::Install.uninstall end end end end
Version data entries
9 entries across 9 versions & 1 rubygems