public
Description: Ronin Exploits is a Ruby library for Ronin that provides exploitation and payload crafting functionality.
Homepage: http://ronin.rubyforge.org/exploits/
Clone URL: git://github.com/postmodern/ronin-exploits.git
ronin-exploits / Rakefile
100644 27 lines (21 sloc) 0.525 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require 'hoe/signing'
require './tasks/spec.rb'
require './tasks/yard.rb'
 
Hoe.spec('ronin-exploits') do
  self.rubyforge_name = 'ronin'
  self.developer('Postmodern', 'postmodern.mod3@gmail.com')
  self.remote_rdoc_dir = 'docs/ronin-exploits'
  self.extra_deps = [
    ['ronin', '>=0.3.1'],
    ['ronin-gen', '>=0.2.0']
  ]
 
  self.extra_dev_deps = [
    ['rspec', '>=1.2.8'],
    ['yard', '>=0.2.3.5']
  ]
 
  self.spec_extras = {:has_rdoc => 'yard'}
end
 
# vim: syntax=Ruby