class Lyra::Secret
Attributes
items[RW]
name[R]
Public Class Methods
new(hash: Hash)
click to toggle source
# File lib/lyra/secret.rb, line 7 def initialize(hash: Hash) hash = hash.transform_keys(&:to_sym) @name = hash[:name] @items = hash[:items] end