Skip to content

Instantly share code, notes, and snippets.

@pixeltrix
Created August 30, 2019 12:39
Show Gist options
  • Save pixeltrix/54d3b9de1fc5dd7cdf0dbc796b73e39a to your computer and use it in GitHub Desktop.
Save pixeltrix/54d3b9de1fc5dd7cdf0dbc796b73e39a to your computer and use it in GitHub Desktop.
Glue code required to get an Active Record rake task working outside of Rails
require 'rake'
require 'active_record'
require 'erb'
require 'yaml'
ActiveRecord::Tasks::DatabaseTasks.migrations_paths = [File.expand_path('db/migrate')]
module Rails
def self.env
'development'
end
end
load 'active_record/railties/databases.rake'
task :environment do
config = YAML.load(ERB.new(File.read('config/database.yml')).result)
ActiveRecord::Base.establish_connection(config[Rails.env])
end
Rake::Task['db:migrate:status'].invoke
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment