mirror of
https://github.com/dkam/paapi.git
synced 2025-12-27 22:54:52 +00:00
17 lines
410 B
Ruby
Executable File
17 lines
410 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require 'bundler/setup'
|
|
#require 'paapi'
|
|
require './lib/paapi.rb'
|
|
|
|
# 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!)
|
|
# require "pry"
|
|
# Pry.start
|
|
|
|
require 'irb'
|
|
load 'config.rb' if File.exist? 'config.rb'
|
|
IRB.start(__FILE__)
|