Sha256: 7a558105e8bac8cb3df1c3fdfa20c0f35d4f366e5f82da6871c4dec51089a732
Contents?: true
Size: 722 Bytes
Versions: 7
Compression:
Stored size: 722 Bytes
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' spec = Gem::Specification.load( File.join( File.dirname(__FILE__), 'wherex.gemspec' ) ) $:.push File.expand_path("../lib", __FILE__) require "wherex/version" require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end task :default => :test
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
wherex-1.0.8 | Rakefile |
wherex-1.0.7 | Rakefile |
wherex-1.0.6 | Rakefile |
wherex-1.0.3 | Rakefile |
wherex-1.0.2 | Rakefile |
wherex-1.0.1 | Rakefile |
wherex-1.0.0 | Rakefile |