Class: RbsMacros::AbstractProject
- Inherits:
-
Object
- Object
- RbsMacros::AbstractProject
- Defined in:
- lib/rbs_macros/project.rb
Overview
Refers to the filesystem RbsMacros operates on.
Direct Known Subclasses
Instance Method Summary collapse
-
#glob(ext:, include:, exclude:, &block) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument.
- #read(path) ⇒ Object
- #write(path, content) ⇒ Object
Instance Method Details
#glob(ext:, include:, exclude:, &block) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument
10 11 12 13 14 15 16 17 |
# File 'lib/rbs_macros/project.rb', line 10 def glob( ext:, include:, exclude:, &block ) raise NoMethodError, "Not implemented: #{self.class}#each_rbs" end |
#read(path) ⇒ Object
23 24 25 |
# File 'lib/rbs_macros/project.rb', line 23 def read(path) raise NoMethodError, "Not implemented: #{self.class}#read" end |
#write(path, content) ⇒ Object
19 20 21 |
# File 'lib/rbs_macros/project.rb', line 19 def write(path, content) raise NoMethodError, "Not implemented: #{self.class}#write" end |