summaryrefslogtreecommitdiff
path: root/lib/set/set.gemspec
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@idaemons.org>2020-12-22 12:20:21 +0900
committerAkinori MUSHA <knu@idaemons.org>2020-12-22 12:20:21 +0900
commit3fa4bd82928983cf5f6711c130711502397e05e2 (patch)
treedb80a406ef9497d1e53ac26c43ffa275edf2e61e /lib/set/set.gemspec
parent63b872c409ec441718f55c60362a441cf108cfc0 (diff)
Import set 1.0.0
- SortedSet has been removed for dependency and performance reasons. - Set#join is added as a shorthand for `.to_a.join`. - Set#<=> is added. https://github.com/ruby/set/blob/v1.0.0/CHANGELOG.md
Diffstat (limited to 'lib/set/set.gemspec')
-rw-r--r--lib/set/set.gemspec25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/set/set.gemspec b/lib/set/set.gemspec
new file mode 100644
index 0000000000..e258af4978
--- /dev/null
+++ b/lib/set/set.gemspec
@@ -0,0 +1,25 @@
+Gem::Specification.new do |spec|
+ spec.name = "set"
+ spec.version = "1.0.0"
+ spec.authors = ["Akinori MUSHA"]
+ spec.email = ["knu@idaemons.org"]
+
+ spec.summary = %q{Provides a class to deal with collections of unordered, unique values}
+ spec.description = %q{Provides a class to deal with collections of unordered, unique values}
+ spec.homepage = "https://github.com/ruby/set"
+ spec.license = "BSD-2-Clause"
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
+
+ spec.metadata["homepage_uri"] = spec.homepage
+ spec.metadata["source_code_uri"] = spec.homepage
+ spec.metadata["changelog_uri"] = "https://github.com/ruby/set/blob/v#{spec.version}/CHANGELOG.md"
+
+ # 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('..', __FILE__)) 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"]
+end