class FabricKitConfig

Attributes

info[RW]
name[RW]

Public Class Methods

new(name) click to toggle source
# File lib/motion-fabric.rb, line 35
def initialize(name)
  @name = name
  @info = {}
end

Public Instance Methods

to_hash() click to toggle source
# File lib/motion-fabric.rb, line 40
def to_hash
  {
    'KitInfo' => info,
    'KitName' => name
  }
end