mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
8 lines
177 B
Bash
Executable File
8 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Usage: script/console
|
|
# Starts an IRB console with this library loaded.
|
|
|
|
gemspec="$(ls *.gemspec | head -1)"
|
|
|
|
exec bundle exec irb -r "${gemspec%.*}" "$@"
|