Add sqlite3 to Gemfile

Fixes all the post modules that require it to parse pilfered sqlite DB
files.
bug/bundler_fix
James Lee 2014-05-27 10:29:55 -05:00
parent 704e4d78ca
commit cc1e81ecb7
No known key found for this signature in database
GPG Key ID: 2D6094C7CEA0A321
2 changed files with 6 additions and 2 deletions

View File

@ -10,12 +10,14 @@ gem 'json'
gem 'msgpack'
# Needed by anemone crawler
gem 'nokogiri'
# Needed by db.rb and Msf::Exploit::Capture
gem 'packetfu', '1.1.9'
# Needed by JSObfu
gem 'rkelly-remix', '0.0.6'
# Needed by anemone crawler
gem 'robots'
# Needed by db.rb and Msf::Exploit::Capture
gem 'packetfu', '1.1.9'
# Needed for some post modules
gem 'sqlite3'
group :db do
# Needed for Msf::DbManager

View File

@ -53,6 +53,7 @@ GEM
multi_json (~> 1.0.3)
simplecov-html (~> 0.5.3)
simplecov-html (0.5.3)
sqlite3 (1.3.9)
timecop (0.6.3)
tzinfo (0.3.37)
yard (0.8.7)
@ -82,5 +83,6 @@ DEPENDENCIES
rspec (>= 2.12)
shoulda-matchers
simplecov (= 0.5.4)
sqlite3
timecop
yard