File: key.rb

package info (click to toggle)
ruby-toml 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: ruby: 666; sh: 7; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
module TOML
  class Key
    attr_reader :key, :value
    
    def initialize(key, value)
      @key = key
      @value = value
    end
  end
end