Skip to content

Handling the unneeded migration filecreation using method_added capture approach #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions lib/activeadmin-mongoid.rb
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@
require 'active_admin/mongoid'
require "rails/generators/actions"
require "rails/generators/named_base"

# Considering the Rails::Generators::NamedBase is one of the nearest ancestor to
# ActiveAdmin::Generators::InstallGenerator, we can open the class and an empty create_migration
# to the class(which will overridden by other subclasses). We can specifically focus on the
# ActiveAdmin::Generators::InstallGenerator class and apply remove_method during the method_added call
# and thereby pushing ActiveAdmin::Generators::InstallGenerator to use our empty create_migrations method.

Rails::Generators::NamedBase.class_eval do

def create_migrations
end

def self.inherited(klass)
super
if klass.name == "ActiveAdmin::Generators::InstallGenerator"

klass.class_eval do
def self.method_added(method_name)
super
remove_method method_name if method_name == :create_migrations
end
end
end
end
end