Sha256: 1ae37ec067d8402a4f82ee95dbd21b081d08d0ea97866de9e1363c42bd003012

Contents?: true

Size: 427 Bytes

Versions: 16

Compression:

Stored size: 427 Bytes

Contents

require 'rubygems'
require 'bundler/setup'

desc 'Default: run specs'
task default: :spec

desc 'Copy sample spec database.yml over if not exists'
task :copy_db_config do
  cp 'spec/internal/config/database.yml.sample', 'spec/internal/config/database.yml'
end

task spec: [:copy_db_config]

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
  t.pattern = 'spec/**/*_spec.rb'
end

Bundler::GemHelper.install_tasks

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
acts_as_bookable-0.1.4 Rakefile
acts_as_bookable-0.1.3 Rakefile
acts_as_bookable-0.1.2 Rakefile
acts_as_bookable-0.1.0 Rakefile
acts-as-taggable-on-3.4.4 Rakefile
acts-as-taggable-on-3.4.3 Rakefile
acts-as-taggable-on-3.4.2 Rakefile
acts-as-taggable-on-3.4.1 Rakefile
acts-as-taggable-on-3.4.0 Rakefile
acts-as-taggable-on-3.3.0 Rakefile
acts-as-taggable-on-3.2.6 Rakefile
acts-as-taggable-on-3.2.5 Rakefile
acts-as-taggable-on-3.2.4 Rakefile
acts-as-taggable-on-3.2.3 Rakefile
acts-as-taggable-on-3.2.2 Rakefile
acts-as-taggable-on-3.2.1 Rakefile