Sha256: b33c9a45610c976b9071ed9a82f102c7cf2c74aad878fa3a9e81c611cced4b2b
Contents?: true
Size: 499 Bytes
Versions: 2
Compression:
Stored size: 499 Bytes
Contents
require 'forwardable' require 'rubygems' gem 'mash', '0.0.3' require 'mash' gem 'httparty', '0.4.3' require 'httparty' class APIKeyNotSet < StandardError; end module Remixr # Get your API key from http://remix.bestbuy.com/apps/register def self.api_key raise APIKeyNotSet if @api_key.nil? @api_key end def self.api_key=(api_key) @api_key = api_key end end directory = File.expand_path(File.dirname(__FILE__)) require File.join(directory, 'remixr', 'client')
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
squeejee-remixr-0.1.0 | lib/remixr.rb |
remixr-0.1.0 | lib/remixr.rb |