Sha256: b8e0b6f4f98812fea3c134c3bff79804607c62110dac0cac3cae932329c29284

Contents?: true

Size: 456 Bytes

Versions: 7

Compression:

Stored size: 456 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/*_spec.rb']
end


desc "Run all tests"
task :test do
  sh "bundle exec rake spec"
end


desc "Run callback tests"
task :test_callbacks do
  sh "rspec ./spec/callback_spec.rb"
end


desc "Run generator tests"
task :test_generators do
  sh "rspec ./spec/generator_spec.rb"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
paloma-1.2.6 Rakefile
paloma-1.2.5 Rakefile
paloma-1.2.4 Rakefile
paloma-1.2.3 Rakefile
paloma-1.2.2 Rakefile
paloma-1.2.1 Rakefile
paloma-1.2.0 Rakefile