Skip to content
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

Remove generators from YARD docs #2651

Merged
merged 1 commit into from
Mar 28, 2018
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require 'rails/generators/active_record/migration'

module Spree
# @private
class CustomUserGenerator < Rails::Generators::NamedBase
include ActiveRecord::Generators::Migration

Expand Down
10 changes: 6 additions & 4 deletions core/lib/generators/spree/dummy/dummy_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
require 'spree/core/version'

module Spree
# @private
class DummyGenerator < Rails::Generators::Base
desc "Creates blank Rails application, installs Solidus and all sample data"

Expand Down Expand Up @@ -138,9 +139,10 @@ def gemfile_path
end
end
end
end

module Spree::DummyGeneratorHelper
mattr_accessor :inject_extension_requirements
self.inject_extension_requirements = false
# @private
module DummyGeneratorHelper
mattr_accessor :inject_extension_requirements
self.inject_extension_requirements = false
end
end
1 change: 1 addition & 0 deletions core/lib/generators/spree/install/install_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
require 'bundler/cli'

module Spree
# @private
class InstallGenerator < Rails::Generators::Base
CORE_MOUNT_ROUTE = "mount Spree::Core::Engine"

Expand Down