mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
15 lines
337 B
Ruby
Executable file
15 lines
337 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# Usage: script/console
|
|
# Starts an IRB console with this library loaded.
|
|
|
|
require 'bundler/setup'
|
|
require 'irb'
|
|
require 'irb/completion'
|
|
|
|
project_lib = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
$:.unshift project_lib unless $:.include?(project_lib)
|
|
|
|
require 'instapaper'
|
|
|
|
ARGV.clear
|
|
IRB.start
|