Skip to content

Commit

Permalink
Add bin/console script
Browse files Browse the repository at this point in the history
The script starts an IRB console session in the context of the gem.
This is useful during development to test something quickly.

No database operations will work out of the box, though. This is a
future topic.
  • Loading branch information
lunohodov committed Mar 7, 2024
1 parent b8476c7 commit eba7812
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env ruby

require "irb"
require "bundler/setup"
require_relative "../lib/monarch_migrate"

binding.irb

0 comments on commit eba7812

Please sign in to comment.