mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add nodoc to CredentialsGenerator
and MasterKeyGenerator
[ci skip]
These classes are internally used only.
This commit is contained in:
parent
95f9c9bfd6
commit
cb9e35ee00
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ require "active_support/encrypted_configuration"
|
|||
|
||||
module Rails
|
||||
module Generators
|
||||
class CredentialsGenerator < Base
|
||||
class CredentialsGenerator < Base # :nodoc:
|
||||
def add_credentials_file
|
||||
unless credentials.content_path.exist?
|
||||
template = credentials_template
|
||||
|
|
|
@ -7,7 +7,7 @@ require "active_support/encrypted_file"
|
|||
|
||||
module Rails
|
||||
module Generators
|
||||
class MasterKeyGenerator < Base
|
||||
class MasterKeyGenerator < Base # :nodoc:
|
||||
MASTER_KEY_PATH = Pathname.new("config/master.key")
|
||||
|
||||
def add_master_key_file
|
||||
|
|
Loading…
Reference in a new issue