Sha256: d3b8a37c11e959d1205f5598c9da762267e64aebe9b745a1b1b850d86349f75b

Contents?: true

Size: 535 Bytes

Versions: 7

Compression:

Stored size: 535 Bytes

Contents

#!/usr/bin/env rake
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rspec/core/rake_task'

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

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

TestApp::Application.load_tasks

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
paloma-2.0.6 spec/test_app/Rakefile
paloma-2.0.5 spec/test_app/Rakefile
paloma-2.0.4 spec/test_app/Rakefile
paloma-2.0.3 spec/test_app/Rakefile
paloma-2.0.2 spec/test_app/Rakefile
paloma-2.0.1 spec/test_app/Rakefile
paloma-2.0.0 spec/test_app/Rakefile