public
Description: Ronin is a Ruby platform for exploit development and security research. Ronin allows for the rapid development and distribution of code, exploits or payloads over many common Source-Code-Management (SCM) systems.
Homepage: http://ronin.rubyforge.org/
Clone URL: git://github.com/postmodern/ronin.git
ronin / Rakefile
100644 38 lines (32 sloc) 0.848 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
28
29
30
31
32
33
34
35
36
37
38
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require 'hoe/signing'
require './tasks/spec.rb'
require './tasks/yard.rb'
 
Hoe.spec('ronin') do
  self.rubyforge_name = 'ronin'
  self.developer('Postmodern','postmodern.mod3@gmail.com')
  self.remote_rdoc_dir = 'docs/ronin'
  self.extra_deps = [
    ['yard', '>=0.2.3.5'],
    ['nokogiri', '>=1.3.3'],
    ['extlib', '>=0.9.14'],
    ['data_objects', '>=0.10.0'],
    ['do_sqlite3', '>=0.10.0'],
    ['dm-core', '>=0.10.0'],
    ['dm-types', '>=0.10.0'],
    ['dm-validations', '>=0.10.0'],
    ['dm-predefined', '>=0.2.0'],
    ['chars', '>=0.1.2'],
    ['parameters', '>=0.1.8'],
    ['contextify', '>=0.1.3'],
    ['repertoire', '>=0.2.3'],
    ['thor', '>=0.11.5']
  ]
 
  self.extra_dev_deps = [
    ['rspec', '>=1.1.12']
  ]
 
  self.spec_extras = {:has_rdoc => 'yard'}
end
 
# vim: syntax=Ruby