Sha256: 7a642c9bfe6b713dbddac87020f5c52b8252cf35c34f7be265f4b2b002c7f61b

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "email_crawler"
  spec.version       = EmailCrawler::VERSION
  spec.authors       = ["Cristian Rasch"]
  spec.email         = ["cristianrasch@fastmail.fm"]
  spec.summary       = %q{Email crawler: crawls the top ten Google search results looking for email addresses and exports them to CSV.}
  spec.homepage      = "https://github.com/cristianrasch/email_crawler"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "mechanize"
  spec.add_runtime_dependency "dotenv"

  spec.add_development_dependency "bundler", "~> 1.5"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "minitest", "~> 5.2.3"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
email_crawler-0.0.5 email_crawler.gemspec
email_crawler-0.0.4 email_crawler.gemspec
email_crawler-0.0.3 email_crawler.gemspec
email_crawler-0.0.2 email_crawler.gemspec