Sha256: c8cf931521ed863220f11394e692b23e059f7fd65a13097ca00fd3c9b5439ea6
Contents?: true
Size: 520 Bytes
Versions: 36
Compression:
Stored size: 520 Bytes
Contents
require 'bundler' require 'rake/testtask' Bundler::GemHelper.install_tasks Rake::TestTask.new task :default => [:test] task :test => :set_rubyopts task :set_rubyopts do ENV['RUBYOPT'] ||= "" ENV['RUBYOPT'] += " -w" if RUBY_ENGINE == "ruby" && RUBY_VERSION >= "2.3" ENV['RUBYOPT'] += " --enable-frozen-string-literal --debug=frozen-string-literal" end end task :'pull-css-tests' do sh 'git subtree pull -P test/css-parsing-tests https://github.com/SimonSapin/css-parsing-tests.git master --squash' end
Version data entries
36 entries across 33 versions & 14 rubygems