2018-08-16 14:54:08 -05:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2019-02-01 22:19:36 -06:00
|
|
|
require '../lib/pastebinner'
|
|
|
|
require '../lib/elastic_search_helper'
|
2018-08-16 14:54:08 -05:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# (If you use this, don't forget to add pry to your Gemfile!)
|
2019-02-01 22:19:36 -06:00
|
|
|
require 'pry'
|
|
|
|
pb = Pastebinner.new(ENV['pastebin_api_key'], ENV['pastebin_username'], ENV['pastebin_password'])
|
2019-01-06 19:26:16 -06:00
|
|
|
binding.pry
|