Sha256: f821567015b37af9cbb8b953bfce58742ce82a64e023a391ffe1521d9bd7e2e4

Contents?: true

Size: 908 Bytes

Versions: 1

Compression:

Stored size: 908 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.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
task :test    => :spec

namespace :spec do
  RSpec::Core::RakeTask.new(:integration) do |t|
    t.pattern    = %w[spec/program_spec.rb spec/shellcode_spec.rb]
    t.rspec_opts = '--tag integration'
  end
end


require 'yard'
YARD::Rake::YardocTask.new

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ronin-asm-0.2.0 Rakefile