Sha256: 8301ce983e040e903b05fd7e1294a40270fafe0b0fbb7d9b81fd81b6c76d786c

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 KB

Contents

# Licensed under the oDesk's API Terms of Use;
# you may not use this file except in compliance with the Terms.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author::    Maksym Novozhylov (mnovozhilov@odesk.com)
# Copyright:: Copyright 2014(c) oDesk.com
# License::   See LICENSE.txt and TOS - http://developers.odesk.com/API-Terms-of-Use

module Odesk
  module Api
    # Config storage
    class Config
      @@debug = false;
      
      attr_accessor :access_token, :access_secret
      attr_reader :consumer_key, :consumer_secret, :signature_method
      
      # Init config object
      #
      # Arguments:
      #  config: (Hash)
      def initialize(config = {})
        @consumer_key, @consumer_secret = config['consumer_key'], config['consumer_secret']
        @access_token, @access_secret = config['access_token'], config['access_secret']
        @signature_method = config['signature_method']
        @@debug = config['debug']

        $DEBUG = self.debug
      end

      # Get debug status
      def debug # :nodoc:
        @@debug
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
odesk-api-0.2.2 lib/odesk/api/config.rb
odesk-api-0.2.1 lib/odesk/api/config.rb
odesk-api-0.1.6 lib/odesk/api/config.rb
odesk-api-0.1.5 lib/odesk/api/config.rb
odesk-api-0.1.4 lib/odesk/api/config.rb
odesk-api-0.1.3 lib/odesk/api/config.rb
odesk-api-0.1.2 lib/odesk/api/config.rb
odesk-api-0.1.1 lib/odesk/api/config.rb
odesk-api-0.1.0 lib/odesk/api/config.rb