Sha256: 9783e3d12952e06cb6c8566e11c0a978d1a3ed9bb81a1ad8ef6e527957cb41a6

Contents?: true

Size: 322 Bytes

Versions: 10

Compression:

Stored size: 322 Bytes

Contents

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

desc "Run an IRB session with Momm preloaded"
task :console do
  exec "irb -I lib -r momm"
end

desc "Run the test suite"
RSpec::Core::RakeTask.new(:rspec) do |t|
  t.pattern = FileList['spec/**/*_spec.rb']
  t.rspec_opts = %w|--color|
end

task default: :spec

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
momm-2.0.1 Rakefile
momm-1.0.1 Rakefile
momm-1.0.0 Rakefile
momm-0.0.7 Rakefile
momm-0.0.6 Rakefile
momm-0.0.5 Rakefile
momm-0.0.4 Rakefile
momm-0.0.3 Rakefile
momm-0.0.2 Rakefile
momm-0.0.1 Rakefile