Sha256: 66330b4a8822098ff820e3788e7aa0d6a11a1baef3cf0019315177292b405166

Contents?: true

Size: 396 Bytes

Versions: 8

Compression:

Stored size: 396 Bytes

Contents

require 'bundler'
require 'rake'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

task default: :spec

desc 'Run all specs'
RSpec::Core::RakeTask.new(:spec) do |task|
  task.pattern = 'spec/**/*_spec.rb'
end

desc 'Start an IRB session with the gem'
task :console do
  $LOAD_PATH.unshift File.expand_path('..', __FILE__)
  require 'hanzo'
  require 'irb'

  ARGV.clear
  IRB.start
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hanzo-1.1.0 Rakefile
hanzo-1.0.2 Rakefile
hanzo-1.0.1 Rakefile
hanzo-1.0.0 Rakefile
hanzo-0.6.2 Rakefile
hanzo-0.6.1 Rakefile
hanzo-0.6 Rakefile
hanzo-0.5 Rakefile