Sha256: 91a62bf7e8880ca784fa8409d31f3f8b08fb0a3108e10f9f77f36c2917bdecde

Contents?: true

Size: 406 Bytes

Versions: 5

Compression:

Stored size: 406 Bytes

Contents

require "bundler/gem_tasks"

require "rake/testtask"

desc "Update ctags"
task :ctags do
  `ctags -R lib test`
end

desc "Jump into a console with the test environment loaded"
task :console do
  $:.push File.expand_path("../test", __FILE__)
  require "test_helper"
  require "irb"

  binding.pry
end

Rake::TestTask.new do |t|
  t.pattern = "test/**/*_test.rb"
  t.libs << "test"
end

task default: "test"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activeshepherd-0.8.4 Rakefile
activeshepherd-0.8.3 Rakefile
activeshepherd-0.8.2 Rakefile
activeshepherd-0.8.1 Rakefile
activeshepherd-0.8.0 Rakefile