Sha256: a008eb12ee0290ef8667a4f968f797dfa450d0f5f09fe8999016a62cd467df25
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' require 'rbkb' task :default => 'test:run' PROJ.name = 'rbkb' PROJ.authors = 'Eric Monti' PROJ.email = 'emonti@matasano.com' PROJ.description = 'Rbkb is a collection of ruby-based pen-testing and reversing tools. Inspired by Matasano Blackbag.' PROJ.url = 'http://github.com/emonti/rbkb' PROJ.version = Rbkb::VERSION PROJ.rubyforge.name = 'rbkb' PROJ.readme_file = 'README.rdoc' PROJ.spec.opts << '--color' PROJ.rdoc.opts << '--line-numbers' #PROJ.rdoc.opts << '--diagram' PROJ.notes.tags << "X"+"XX" # muhah! so we don't note our-self # exclude rcov.rb and external libs from rcov report PROJ.rcov.opts += [ "--exclude", "rcov.rb", "--exclude", "eventmachine", "--exclude", "pcap_misc.rb", "--exclude", "pcaplet.rb" ] depend_on 'eventmachine', '>= 0.12.0' # EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
emonti-rbkb-0.6.6 | Rakefile |
emonti-rbkb-0.6.7 | Rakefile |