lib/github_api/cache_control.rb
module Github module CacheOptions extend self def self.option_accessor(key) defined_method("#{key}=") { |value| } end private def initialize_options(options={}) @default_options = { 'type' => :memoization, } end end end