Sha256: 01ef460940073561672c2518460d515d9676f9a1c14ab332ad7eef2c6fc26856

Contents?: true

Size: 434 Bytes

Versions: 25

Compression:

Stored size: 434 Bytes

Contents

#!/usr/bin/env ruby

require "bundler/setup"
require "dotenv/load"
require "beyond_api"

unless ENV["CLIENT_ID"].nil? and ENV["CLIENT_SECRET"].nil?
  BeyondApi.setup do |config|
    config.client_id = ENV["CLIENT_ID"]
    config.client_secret = ENV["CLIENT_SECRET"]
    config.remove_response_links = true
    config.remove_response_key_underscores = true
    config.object_struct_responses = false
  end
end

require "pry"
Pry.start

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
beyond_api-0.18.0.pre bin/console
beyond_api-0.17.0.pre bin/console
beyond_api-0.16.1.pre bin/console
beyond_api-0.16.0.pre bin/console
beyond_api-0.15.0.pre bin/console
beyond_api-0.14.0.pre bin/console
beyond_api-0.13.0.pre bin/console
beyond_api-0.12.1.pre bin/console
beyond_api-0.12.0.pre bin/console
beyond_api-0.11.1.pre bin/console
beyond_api-0.11.0.pre bin/console
beyond_api-0.10.0.pre bin/console
beyond_api-0.9.0.pre bin/console
beyond_api-0.8.1.pre bin/console
beyond_api-0.8.0.pre bin/console
beyond_api-0.7.1.pre bin/console
beyond_api-0.7.0.pre bin/console
beyond_api-0.6.0.pre bin/console
beyond_api-0.5.1.pre bin/console
beyond_api-0.5.0.pre bin/console