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