| Makefile - warvox - VoIP based wardialing tool, forked from rapid7/warvox. | |
| git clone git://jay.scot/warvox | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| Makefile (406B) | |
| --- | |
| 1 all: test | |
| 2 | |
| 3 test: install | |
| 4 bin/verify_install.rb | |
| 5 | |
| 6 install: bundler | |
| 7 | |
| 8 bundler: | |
| 9 @echo "Checking for RubyGems and the Bundler gem..." | |
| 10 @ruby -rrubygems -e 'require "bundler"; puts "OK"' | |
| 11 | |
| 12 @echo "Validating that 'bundle' is in the path..." | |
| 13 which bundle | |
| 14 | |
| 15 @echo "Installing missing gems as needed.." | |
| 16 bundle install | |
| 17 | |
| 18 | |
| 19 database: | |
| 20 @echo "Checking the database.." | |
| 21 RAILS_ENV=production bundle exec rake db:migrate |