Sha256: 22c860aaeb73e6842b4a411b199325c41cf4a14aabe0750d21857999885af71e
Contents?: true
Size: 688 Bytes
Versions: 2
Compression:
Stored size: 688 Bytes
Contents
require 'rubygems' begin require 'bundler' rescue LoadError => e warn e.message warn "Run `gem install bundler` to install Bundler." exit e.status_code end begin Bundler.setup(:development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'ore/tasks' Ore::Tasks.new require 'rspec/core/rake_task' RSpec::Core::RakeTask.new namespace :spec do RSpec::Core::RakeTask.new(:network) do |t| t.pattern = 'spec/network/{**/}*_spec.rb' t.rspec_opts = '--tag network' end end task :test => :spec task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-support-0.4.0 | Rakefile |
ronin-support-0.4.0.rc2 | Rakefile |