Sha256: 0786948fc859186d136c071f183b436b13bd51ec046a32d0561e7b738384242c

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "spellcheck"
  spec.version       = SpellCheck::VERSION
  spec.authors       = ["siman-man"]
  spec.email         = ["k128585@ie.u-ryukyu.ac.jp"]

  spec.summary       = %q{simple spell check script.}
  spec.description   = %q{simple spell check script.}
  spec.homepage      = "https://github.com/siman-man/spellcheck"
  spec.license       = 'MIT'
  spec.required_ruby_version = '>= 2.2.0'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "terminal-table"

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.5"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spellcheck-0.3.4 spellcheck.gemspec
spellcheck-0.3.3 spellcheck.gemspec
spellcheck-0.3.2 spellcheck.gemspec
spellcheck-0.3.1 spellcheck.gemspec
spellcheck-0.3.0 spellcheck.gemspec