Sha256: 4282601576c709a3ed3d33c445814fd22182103a0aa64bf5192aadd238c0dcea
Contents?: true
Size: 247 Bytes
Versions: 11
Compression:
Stored size: 247 Bytes
Contents
module Billme class ServiceDetails < ServicesSection attr_reader :data def initialize @data = {} end def method_missing(name, *args, &block) return @data[name] = args[0] unless block_given? raise "Not supported!" end end end
Version data entries
11 entries across 11 versions & 1 rubygems