Sha256: 24039c9469917dbaaed0703661f0d09f3b8cf8075602dd4f943ebcd47ec7002b

Contents?: true

Size: 1.51 KB

Versions: 7

Compression:

Stored size: 1.51 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ownlan/version'

Gem::Specification.new do |spec|
  spec.name                  = 'ownlan'
  spec.version               = Ownlan::VERSION
  spec.authors               = ['sidney']
  spec.email                 = ['shideneyu@gmail.com']
  spec.summary               = 'Ownlan aims to be a simple, concise and useful pentesting LAN poisoning suite'
  spec.description           = 'Ownlan is used to test a network against MITM attacks, and then to secure it.'
  spec.homepage              = 'https://github.com/shideneyu/ownlan'
  spec.license               = 'MIT'
  spec.required_ruby_version = '>= 1.9.3'

  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  else
    raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
  end

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.executables   = ['ownlan']
  spec.require_paths = ['lib']

  spec.add_dependency 'packetfu'
  spec.add_dependency 'trollop'
  spec.add_dependency 'activesupport'
  spec.add_development_dependency 'bundler', '~> 1.11'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'pry'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ownlan-0.4.6 ownlan.gemspec
ownlan-0.4.4 ownlan.gemspec
ownlan-0.4.3 ownlan.gemspec
ownlan-0.4.2 ownlan.gemspec
ownlan-0.4.1 ownlan.gemspec
ownlan-0.4.0 ownlan.gemspec
ownlan-0.3.2 ownlan.gemspec