Sha256: 000bc535b1948510ea746e69e7753c1aeb2b1b9f687e778ef965c80356c8f2d0

Contents?: true

Size: 144 Bytes

Versions: 9

Compression:

Stored size: 144 Bytes

Contents

module TOML
  class Key
    attr_reader :key, :value
    
    def initialize(key, value)
      @key = key
      @value = value
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
toml_empty-0.3.0 lib/toml/key.rb
toml-0.3.0 lib/toml/key.rb
toml_empty-0.1.0 lib/toml/key.rb
toml-0.2.0 lib/toml/key.rb
toml-0.1.2 lib/toml/key.rb
toml-0.1.1 lib/toml/key.rb
toml-0.1.0 lib/toml/key.rb
toml-0.0.4 lib/toml/key.rb
toml-0.0.3 lib/toml/key.rb