Sha256: a4f90347627ab50bb006bb43c0e716a3cb91a3d34372034a460b75f19caae0c1

Contents?: true

Size: 1.48 KB

Versions: 43

Compression:

Stored size: 1.48 KB

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'dap/version'

Gem::Specification.new do |s|
  s.name        = 'dap'
  s.version     = Dap::VERSION
  s.required_ruby_version = '>= 2.1'
  s.authors     = [
      'Rapid7 Research'
  ]
  s.email       = [
      'research@rapid7.com'
  ]
  s.homepage    = "https://www.github.com/rapid7/dap"
  s.summary     = %q{DAP: The Data Analysis Pipeline}
  s.description = %q{
    DAP reads data using an input plugin, transforms it through a series of filters, and prints it out again
    using an output plugin. Every record is treated as a document (aka: hash/dict) and filters are used to
    reduce, expand, and transform these documents as they pass through. Think of DAP as a mashup between
    sed, awk, grep, csvtool, and jq, with map/reduce capabilities.
  }.gsub(/\s+/, ' ').strip

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ['lib']

  # ---- Dependencies ----

  s.add_development_dependency 'rspec'
  s.add_development_dependency 'cucumber'
  s.add_development_dependency 'aruba'

  s.add_runtime_dependency 'nokogiri'
  s.add_runtime_dependency 'oj'
  s.add_runtime_dependency 'htmlentities'
  s.add_runtime_dependency 'net-dns'
  s.add_runtime_dependency 'bit-struct'
  s.add_runtime_dependency 'geoip-c'
  s.add_runtime_dependency 'recog'

end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
dap-1.2.0 dap.gemspec
dap-1.0.2 dap.gemspec
dap-1.0.1 dap.gemspec
dap-1.0.0 dap.gemspec
dap-0.1.24 dap.gemspec
dap-0.1.23 dap.gemspec
dap-0.1.22 dap.gemspec
dap-0.1.21 dap.gemspec
dap-0.1.20 dap.gemspec
dap-0.1.18 dap.gemspec
dap-0.1.17 dap.gemspec
dap-0.1.16 dap.gemspec
dap-0.1.15 dap.gemspec
dap-0.1.14 dap.gemspec
dap-0.1.13 dap.gemspec
dap-0.1.12 dap.gemspec
dap-0.1.11 dap.gemspec
dap-0.1.10 dap.gemspec
dap-0.1.9 dap.gemspec
dap-0.1.8 dap.gemspec