Sha256: 2b72072c98af02858183be47d939d6bd9f74163b4c5c1193a2408c0dc968a4fd

Contents?: true

Size: 465 Bytes

Versions: 49

Compression:

Stored size: 465 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'tasks/standalone_migrations'
require 'appstats/tasks'

begin
  MigratorTasks.new do |t|
    t.migrations = "db/migrations"
    t.config = "db/config.yml"
    t.schema = "db/schema.rb"
    t.env = "DB"
    t.default_env = "development"
    t.verbose = true
    t.log_level = Logger::ERROR
  end
rescue LoadError => e
  puts "gem install standalone_migrations to get db:migrate:* tasks! (Error: #{e})"
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
appstats-0.16.6 Rakefile
appstats-0.16.5 Rakefile
appstats-0.16.4 Rakefile
appstats-0.16.3 Rakefile
appstats-0.16.2 Rakefile
appstats-0.16.1 Rakefile
appstats-0.15.1 Rakefile
appstats-0.15.0 Rakefile
appstats-0.14.0 Rakefile
appstats-0.13.4 Rakefile
appstats-0.13.3 Rakefile
appstats-0.13.2 Rakefile
appstats-0.13.1 Rakefile
appstats-0.13.0 Rakefile
appstats-0.12.5 Rakefile
appstats-0.12.4 Rakefile
appstats-0.12.2 Rakefile
appstats-0.12.1 Rakefile
appstats-0.11.7 Rakefile
appstats-0.11.6 Rakefile