Class: DakeScheme::Tag

Inherits:
Scheme
  • Object
show all
Defined in:
lib/dake/scheme.rb

Constant Summary collapse

PATTERN =
['@']

Instance Attribute Summary

Attributes inherited from Scheme

#path, #src, #step

Instance Method Summary collapse

Methods inherited from Scheme

#checksum, #exist?, #mtime

Constructor Details

#initialize(scheme_part, path_part, step) ⇒ Tag

Returns a new instance of Tag.



17
18
19
20
21
22
# File 'lib/dake/scheme.rb', line 17

def initialize(scheme_part, path_part, step)
  @src = scheme_part + path_part
  @path = path_part
  @step = step
  @step = step
end