Revisions
-
Sven Fuchs created this gist
Mar 19, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ In your Gemfile add: group :development, :test do gem 'micro_migrations', :git => '[email protected]:33e9f92c229eb808a4fa.git' end You might want to add something like this to the Rakefile of apps that use a gem that uses micro_migrations: ENV['SCHEMA'] = "#{Gem.loaded_specs['your-gem-name'].full_gem_path}/db/schema.rb" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ Gem::Specification.new do |s| s.name = 'micro_migrations' s.version = '0.0.1' s.author = 'Sven Fuchs' s.email = '[email protected]' s.summary = 'Minimal ActiveRecord standalone migrations' s.description = 'Minimal ActiveRecord standalone migrations.' s.files = ['micro_migrations.rb'] s.require_path = '.' end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ require 'rails' require 'active_record/railtie' Bundler.require app = Class.new(Rails::Application) app.config.active_support.deprecation = :log app.load_tasks Rake::Task['environment'].enhance do app.initialize! end