Sha256: c69da29670af39674c97303c01f17aed28f6ed6af48358cac9f5c969311bfa63

Contents?: true

Size: 327 Bytes

Versions: 26

Compression:

Stored size: 327 Bytes

Contents

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

require './configuration'
require './test_database'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

namespace :db do
  desc 'Create the test database'
  task :create do
    config = Configuration.new
    TestDatabase.new(config).setup_test_database
  end
end

Version data entries

26 entries across 26 versions & 4 rubygems

Version Path
percona_migrator-1.1.0 Rakefile
percona_migrator-0.1.1 Rakefile
percona_migrator-1.0.0 Rakefile
percona_migrator-0.1.0.rc.7 Rakefile
percona_migrator-0.1.0.rc.6 Rakefile
percona_migrator-0.1.0.rc.5 Rakefile