public
Description: Ronin SQL is a Ruby library for Ronin that provids support for SQL related security tasks.
Homepage: http://ronin.rubyforge.org/sql/
Clone URL: git://github.com/postmodern/ronin-sql.git
commit  44c789d34e0be705e835a578c09fc1d3b155ee6c
tree    bc3d1af417ba16e5ee4af03244548f176cce2af0
parent  b7b4fb5f1afecba1fc59ce6708589ebcef2289f2
ronin-sql / Rakefile
100644 27 lines (21 sloc) 0.514 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-sql') do
  self.rubyforge_name = 'ronin'
  self.developer('Postmodern','postmodern.mod3@gmail.com')
  self.remote_rdoc_dir = 'docs/ronin-sql'
  self.extra_deps = [
    ['ronin', '>=0.3.0'],
    ['ronin-web', '>=0.2.2']
  ]
 
  self.extra_dev_deps = [
    ['rspec', '>=1.2.8'],
    ['yard', '>=0.2.3.5']
  ]
 
  self.spec_extras = {:has_rdoc => 'yard'}
end
 
# vim: syntax=Ruby