Sha256: c9ca63b3f164e89466f965641414c33d8a86e6960f77e6577bc09cccf29a917c
Contents?: true
Size: 349 Bytes
Versions: 17
Compression:
Stored size: 349 Bytes
Contents
require "bundler/setup" require "bundler/gem_tasks" require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec, :tag) do |t, task_args| t.rspec_opts = "--tag #{task_args[:tag]}" if task_args[:tag] end task :default => :spec desc "Open an irb session preloaded with this library" task :console do sh "irb -rubygems -I . -r lib/lol.rb" end
Version data entries
17 entries across 17 versions & 1 rubygems