We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ebe87 commit a30c0a1Copy full SHA for a30c0a1
Gemfile.local.example
@@ -27,6 +27,9 @@ end
27
28
# Create a custom group
29
group :local do
30
- # Add the lab gem so that the 'lab' plugin will work again
+ # This is the first way to add a non-standard gem file dependency in.
31
gem 'lab', '~> 0.2.7'
32
+ # And this is another way that references local directories to find and compile the gem file as needed.
33
+ # This is the optimal method for testing Gem PRs such as those in rex-text or rex-powershell.
34
+ gem 'rex-powershell', path: '/home/gwillcox-r7/git/rex-powershell'
35
end
0 commit comments