Methods
M
Included Modules
Instance Public methods
make_builder_class()
# File railties/test/generators/generator_test.rb, line 8
def make_builder_class
  Class.new(AppBase) do
    add_shared_options_for "application"

    # include a module to get around thor's method_added hook
    include(Module.new {
      def gemfile_entries; super; end
      def invoke_all; super; self; end
      def add_gem_entry_filter; super; end
      def gemfile_entry(*args); super; end
    })
  end