Class: JSONCop::Model::Transformer
- Inherits:
-
Object
- Object
- JSONCop::Model::Transformer
- Defined in:
- lib/jsoncop/model/transformer.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(name, type) ⇒ Transformer
constructor
A new instance of Transformer.
Constructor Details
#initialize(name, type) ⇒ Transformer
Returns a new instance of Transformer.
5 6 7 8 |
# File 'lib/jsoncop/model/transformer.rb', line 5 def initialize(name, type) @name = name.gsub(/\s+/, "") @type = type.gsub(/\s+/, "").gsub(/:/, ": ") end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/jsoncop/model/transformer.rb', line 4 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
4 5 6 |
# File 'lib/jsoncop/model/transformer.rb', line 4 def type @type end |