Class: Gemfilelint::Offenses::Remote
- Inherits:
-
Struct
- Object
- Struct
- Gemfilelint::Offenses::Remote
- Defined in:
- lib/gemfilelint.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#path ⇒ Object
Returns the value of attribute path.
-
#suggestions ⇒ Object
Returns the value of attribute suggestions.
Instance Method Summary collapse
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name
43 44 45 |
# File 'lib/gemfilelint.rb', line 43 def name @name end |
#path ⇒ Object
Returns the value of attribute path
43 44 45 |
# File 'lib/gemfilelint.rb', line 43 def path @path end |
#suggestions ⇒ Object
Returns the value of attribute suggestions
43 44 45 |
# File 'lib/gemfilelint.rb', line 43 def suggestions @suggestions end |
Instance Method Details
#to_s ⇒ Object
44 45 46 47 48 49 |
# File 'lib/gemfilelint.rb', line 44 def to_s <<~ERR Source \"#{name}\" is possibly misspelled, suggestions: #{suggestions.map { |suggestion| " * #{suggestion}" }.join("\n")} ERR end |