Sha256: a16da2b54c0032dd0235d4dc4f716fbadf7e0cfe64200ce6ecd74daf82e610f2
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'mbox_header_scraper/version' Gem::Specification.new do |spec| spec.name = 'mbox_header_scraper' spec.version = MboxHeaderScraper::VERSION spec.authors = ['Yuya TAMANO'] spec.email = ['everfree.main@gmail.com'] spec.summary = 'tool to search mail header in mbox file' spec.description = 'See README.md for more information.' spec.homepage = 'https://github.com/tamano/mbox_header_scraper' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] if spec.respond_to?(:metadata) # spec.metadata['allowed_push_host'] end spec.add_dependency 'thor' # spec.add_dependency 'mail' spec.add_development_dependency 'bundler' # , '~> 1.9' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' spec.add_development_dependency 'codeclimate-test-reporter' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'pry' spec.add_development_dependency 'pry-byebug' spec.add_development_dependency 'awesome_print' spec.add_development_dependency 'hirb' spec.add_development_dependency 'guard-rspec' spec.add_development_dependency 'guard-rubocop' spec.add_development_dependency 'terminal-notifier-guard' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mbox_header_scraper-0.1.1 | mbox_header_scraper.gemspec |
mbox_header_scraper-0.1.0 | mbox_header_scraper.gemspec |