Skip to content

Commit

Permalink
chore: Add RC files for pry and irb to load "paneron_registry"
Browse files Browse the repository at this point in the history
  • Loading branch information
ribose-jeffreylau committed Oct 17, 2024
1 parent cc7cca7 commit d07f5c4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .irbrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "paneron_registry"
1 change: 1 addition & 0 deletions .pryrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "paneron_registry"
18 changes: 18 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,24 @@
env = [
];
commands = [
{
name = "irb";
command = "bundle exec irb \"$@\"";
help = "Run console IRB (has completion menu)";
category = "Ruby";
}
{
name = "console";
command = "bundle exec irb \"$@\"";
help = "Run console IRB (has completion menu)";
category = "Ruby";
}
{
name = "pry";
command = "bundle exec pry \"$@\"";
help = "Run pry";
category = "Ruby";
}
{
name = "release";
command = "bundle exec rake release \"$@\"";
Expand Down

0 comments on commit d07f5c4

Please sign in to comment.