2012-04-15 23:35:38 -05:00
# -*- encoding: utf-8 -*-
Gem :: Specification . new do | s |
s . name = " metasploit_data_models "
s . version = " 0.0.2.43DEV "
s . required_rubygems_version = Gem :: Requirement . new ( " > 1.3.1 " ) if s . respond_to? :required_rubygems_version =
s . authors = [ " Trevor Rosen " ]
2012-06-25 10:11:53 -05:00
s . date = " 2012-06-25 "
2012-04-15 23:35:38 -05:00
s . description = " Implements minimal ActiveRecord models and database helper code used in both the Metasploit Framework (MSF) and Metasploit commercial editions. "
s . email = [ " trevor_rosen@rapid7.com " ]
s . executables = [ " mdm_console " ]
s . files = [ " bin/mdm_console " ]
s . homepage = " "
s . require_paths = [ " lib " ]
2012-06-01 10:55:25 -05:00
s . rubygems_version = " 1.8.24 "
2012-04-15 23:35:38 -05:00
s . summary = " Database code for MSF and Metasploit Pro "
if s . respond_to? :specification_version then
s . specification_version = 3
if Gem :: Version . new ( Gem :: VERSION ) > = Gem :: Version . new ( '1.2.0' ) then
s . add_development_dependency ( %q< rspec > , [ " >= 0 " ] )
s . add_runtime_dependency ( %q< activerecord > , [ " >= 0 " ] )
s . add_runtime_dependency ( %q< activesupport > , [ " >= 0 " ] )
s . add_runtime_dependency ( %q< pg > , [ " >= 0 " ] )
s . add_runtime_dependency ( %q< pry > , [ " >= 0 " ] )
else
s . add_dependency ( %q< rspec > , [ " >= 0 " ] )
s . add_dependency ( %q< activerecord > , [ " >= 0 " ] )
s . add_dependency ( %q< activesupport > , [ " >= 0 " ] )
s . add_dependency ( %q< pg > , [ " >= 0 " ] )
s . add_dependency ( %q< pry > , [ " >= 0 " ] )
end
else
s . add_dependency ( %q< rspec > , [ " >= 0 " ] )
s . add_dependency ( %q< activerecord > , [ " >= 0 " ] )
s . add_dependency ( %q< activesupport > , [ " >= 0 " ] )
s . add_dependency ( %q< pg > , [ " >= 0 " ] )
s . add_dependency ( %q< pry > , [ " >= 0 " ] )
end
end