Skip to content

Commit 994dcb1

Browse files
authored
Merge pull request #32 from GoSecure/master
Add Bundler for easier gem management
2 parents 85fb0dd + c537116 commit 994dcb1

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
vendor/
2+
.bundle/
3+
*.lock
4+
*.swp

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
gem 'ruby-nmap'
3+
gem 'net-http-persistent'
4+
gem 'mechanize'
5+
gem 'text-table'
6+
gem 'sqlite3'
7+
gem 'iconv'

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ thus serving pwnable targets on a silver platter.
2727
## Setup / Install
2828
You would need to install the following gems:
2929

30-
- gem install ruby-nmap net-http-persistent mechanize text-table sqlite3
30+
- bundle install --path vendor
31+
32+
- bundler exec ./yasuo.rb -f [myfile]
3133

3234
## Details
3335

0 commit comments

Comments
 (0)