Skip to content

Commit cb9e35e

Browse files
committed
Add nodoc to CredentialsGenerator and MasterKeyGenerator [ci skip]
These classes are internally used only.
1 parent 95f9c9b commit cb9e35e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

railties/lib/rails/generators/rails/credentials/credentials_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
module Rails
88
module Generators
9-
class CredentialsGenerator < Base
9+
class CredentialsGenerator < Base # :nodoc:
1010
def add_credentials_file
1111
unless credentials.content_path.exist?
1212
template = credentials_template

railties/lib/rails/generators/rails/master_key/master_key_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
module Rails
99
module Generators
10-
class MasterKeyGenerator < Base
10+
class MasterKeyGenerator < Base # :nodoc:
1111
MASTER_KEY_PATH = Pathname.new("config/master.key")
1212

1313
def add_master_key_file

0 commit comments

Comments
 (0)