class Sekrit::Bundle

Attributes

encrypted[R]
files[R]
id[R]

Public Class Methods

new(hash: Hash) click to toggle source
# File lib/sekrit/bundle.rb, line 8
def initialize(hash: Hash)
  @encrypted = hash['encrypted'] || []
  @files = hash['files'] || []
  @id = hash['id']
end