Sha256: 39949888423844bd811d84a5105e4f335ff7982e92fc6946d966dd6027165f5e

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'rambling/trie/version'

Gem::Specification.new do |gem|
  gem.authors = ['Ribose Inc.']
  gem.email = ['open.source@ribose.com']

  gem.description = <<~DESCRIPTION.gsub(%r{\s+}, ' ')
    The original Rambling Trie gem but Opal-compatible.
  DESCRIPTION

  gem.summary = 'A Ruby implementation (Opal Compatible) of the trie data structure.'
  gem.homepage = 'http://github.com/interscript/rambling-trie'
  gem.date = Time.now.strftime '%Y-%m-%d'

  executables = `git ls-files -- bin/*`.split "\n"
  files = `git ls-files -- {lib,*file,*.gemspec,LICENSE*,README*}`.split "\n"
  test_files = `git ls-files -- {test,spec,features}/*`.split "\n"

  gem.executables = executables.map { |f| File.basename f }
  gem.files = files
  gem.test_files = test_files
  gem.require_paths = %w(lib)

  gem.name = 'rambling-trie-opal'
  gem.license = 'MIT'
  gem.version = Rambling::Trie::VERSION
  gem.platform = Gem::Platform::RUBY
  gem.required_ruby_version = '~> 2.4'

  gem.add_development_dependency 'rake', '~> 13.0'
  gem.add_development_dependency 'rspec', '~> 3.9'
  gem.add_development_dependency 'yard', '~> 0.9.25'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rambling-trie-opal-2.1.1 rambling-trie-opal.gemspec