Class: Steep::Project::SignatureLoaded

Inherits:
Object
  • Object
show all
Defined in:
lib/steep/project.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#checkObject (readonly)

Returns the value of attribute check.



4
5
6
# File 'lib/steep/project.rb', line 4

def check
  @check
end

#file_pathsObject (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_atObject (readonly)

Returns the value of attribute loaded_at.



5
6
7
# File 'lib/steep/project.rb', line 5

def loaded_at
  @loaded_at
end