Sha256: 49f6626484d33f2274c540d88df7f4980194017fbc250ab8fc849e9c59740246
Contents?: true
Size: 740 Bytes
Versions: 3
Compression:
Stored size: 740 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 'rubygems/tasks' Gem::Tasks.new(:sign => {:checksum => true, :pgp => true}) do |tasks| tasks.scm.tag.format = 'v%s' tasks.console.command = 'ripl' tasks.console.options = %w[ -rripl/multi_line -rripl/auto_indent -rripl/color_result ] end require 'rspec/core/rake_task' RSpec::Core::RakeTask.new task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ronin-gen-1.2.0 | data/ronin/gen/library/Rakefile |
ronin-gen-1.2.0.rc2 | data/ronin/gen/library/Rakefile |
ronin-gen-1.2.0.rc1 | data/ronin/gen/library/Rakefile |