Sha256: 870c4b409bf1cbcbc729574050fa6d1d6847a6f5b78885f149694e644c74a347
Contents?: true
Size: 321 Bytes
Versions: 3
Compression:
Stored size: 321 Bytes
Contents
require 'ostruct' module Socialite class ServiceConfig < OpenStruct # Set credentials and options for a given service, i.e. twitter def initialize(app_key, app_secret, options) super({ :app_key => app_key, :app_secret => app_secret, :options => options }) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
socialite-0.0.1.beta4 | lib/socialite/service_config.rb |
socialite-0.0.1.beta2 | lib/socialite/service_config.rb |
socialite-0.0.1.beta | lib/socialite/service_config.rb |