Sha256: c276d82964e1b587aa898b2f29fa4a410d1113af5364f18ff98b4b65b587cfa0

Contents?: true

Size: 610 Bytes

Versions: 2

Compression:

Stored size: 610 Bytes

Contents

#!/usr/bin/env ruby

require 'bundler/setup'
require 'smspartner'

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

@secrets = YAML.load_file File.expand_path('../../spec/secrets.yml', __FILE__)

def configure!(api_key)
  Smspartner.configure do |config|
    config.sandbox = true
    config.api_key = api_key
    config.sender  = 'Test'
  end
end

configure!(@secrets[:api_key])

# (If you use this, don't forget to add pry to your Gemfile!)
# require 'pry'
# Pry.start

require 'irb'
IRB.start(__FILE__)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smspartner-0.1.1 bin/console
smspartner-0.1.0 bin/console