1
0
Fork 0
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:
yuuji.yaginuma 2018-02-03 09:06:09 +09:00
parent 95f9c9bfd6
commit cb9e35ee00
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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