class Billme::ServiceDetails
Attributes
data[R]
Public Class Methods
new()
click to toggle source
# File lib/billme/service_details.rb, line 5 def initialize @data = {} end
Public Instance Methods
method_missing(name, *args, &block)
click to toggle source
# File lib/billme/service_details.rb, line 9 def method_missing(name, *args, &block) return @data[name] = args[0] unless block_given? raise "Not supported!" end