Class: Steep::Project::SignatureLoaded
- Inherits:
-
Object
- Object
- Steep::Project::SignatureLoaded
- Defined in:
- lib/steep/project.rb
Instance Attribute Summary collapse
-
#check ⇒ Object
readonly
Returns the value of attribute check.
-
#file_paths ⇒ Object
readonly
Returns the value of attribute file_paths.
-
#loaded_at ⇒ Object
readonly
Returns the value of attribute loaded_at.
Instance Method Summary collapse
-
#initialize(check:, loaded_at:, file_paths:) ⇒ SignatureLoaded
constructor
A new instance of SignatureLoaded.
Constructor Details
#initialize(check:, loaded_at:, file_paths:) ⇒ SignatureLoaded
Returns a new instance of SignatureLoaded.
8 9 10 11 12 |
# File 'lib/steep/project.rb', line 8 def initialize(check:, loaded_at:, file_paths:) @check = check @loaded_at = loaded_at @file_paths = file_paths end |
Instance Attribute Details
#check ⇒ Object (readonly)
Returns the value of attribute check.
4 5 6 |
# File 'lib/steep/project.rb', line 4 def check @check end |
#file_paths ⇒ Object (readonly)
Returns the value of attribute file_paths.
6 7 8 |
# File 'lib/steep/project.rb', line 6 def file_paths @file_paths end |
#loaded_at ⇒ Object (readonly)
Returns the value of attribute loaded_at.
5 6 7 |
# File 'lib/steep/project.rb', line 5 def loaded_at @loaded_at end |