Sha256: f2fe57fa4e27c52e1a2be58299656fb6630346151d09553c62d210147b36bb0d
Contents?: true
Size: 490 Bytes
Versions: 11
Compression:
Stored size: 490 Bytes
Contents
module Ratchetio class Configuration attr_accessor :access_token attr_accessor :environment attr_accessor :root attr_accessor :branch attr_accessor :framework attr_accessor :endpoint attr_accessor :logger DEFAULT_ENDPOINT = "https://submit.ratchet.io/api/1/item/" def initialize @endpoint = DEFAULT_ENDPOINT @framework = 'Plain' end # allow params to be read like a hash def [](option) send(option) end end end
Version data entries
11 entries across 11 versions & 1 rubygems