Sha256: a27b7163ea92815944fc34d1acbc818b1d8a05a0497202af7a1d08f244236138

Contents?: true

Size: 304 Bytes

Versions: 11

Compression:

Stored size: 304 Bytes

Contents

module CredStash::Repository
  class Item
    attr_reader :key, :contents, :name, :version, :hmac

    def initialize(key: nil, contents: nil, name: nil, version: nil, hmac: nil)
      @key = key
      @contents = contents
      @name = name
      @version = version
      @hmac = hmac
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rcredstash-2.0.0 lib/cred_stash/repository/item.rb
rcredstash-1.1.0 lib/cred_stash/repository/item.rb
rcredstash-1.0.1 lib/cred_stash/repository/item.rb
rcredstash-1.0.0 lib/cred_stash/repository/item.rb
rcredstash-0.11.0 lib/cred_stash/repository/item.rb
rcredstash-0.10.0 lib/cred_stash/repository/item.rb
rcredstash-0.9.0 lib/cred_stash/repository/item.rb
rcredstash-0.8.0 lib/cred_stash/repository/item.rb
rcredstash-0.7.0 lib/cred_stash/repository/item.rb
rcredstash-0.6.0 lib/cred_stash/repository/item.rb
rcredstash-0.5.0 lib/cred_stash/repository/item.rb