Sha256: 414e62b43e5a8a77e46a7d91bd365ef5c98f3401ac6abc6a0b58d18e15b2a6bf

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

require_relative 'lib/suika/version'

Gem::Specification.new do |spec|
  spec.name          = 'suika'
  spec.version       = Suika::VERSION
  spec.authors       = ['yoshoku']
  spec.email         = ['yoshoku@outlook.com']

  spec.summary       = 'Suika is a Japanese morphological analyzer written in pure Ruby.'
  spec.description   = 'Suika is a Japanese morphological analyzer written in pure Ruby.'
  spec.homepage      = 'https://github.com/yoshoku/suika'
  spec.license       = 'BSD-3-Clause'

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = spec.homepage
  spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/suika/blob/master/CHANGELOG.md'
  spec.metadata['documentation_uri'] = 'https://rubydoc.info/gems/suika'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |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_runtime_dependency 'dartsclone', '>= 0.2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
suika-0.2.0 suika.gemspec