forked from gonzedge/rambling-trie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrambling-trie.gemspec
37 lines (29 loc) · 1.32 KB
/
rambling-trie.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'rambling/trie/version'
Gem::Specification.new do |gem|
gem.authors = ['Edgar Gonzalez', 'Lilibeth De La Cruz']
gem.email = ['[email protected]', '[email protected]']
gem.description = <<~DESCRIPTION.gsub(%r{\s+}, ' ')
The Rambling Trie is a Ruby implementation of the trie data structure, which
includes compression abilities and is designed to be very fast to traverse.
DESCRIPTION
gem.summary = 'A Ruby implementation of the trie data structure.'
gem.homepage = 'http://github.com/gonzedge/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'
gem.license = 'MIT'
gem.version = Rambling::Trie::VERSION
gem.platform = Gem::Platform::RUBY
gem.required_ruby_version = '>= 2.5', '< 3.1'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'yard', '~> 0.9.26'
end