[rubygems/rubygems] Cancel `bundle console` deprecation
[ruby.git] / lib / securerandom.gemspec
blob0b023486a6dec0c6bcd1588df66769fdfd13cf13
1 name = File.basename(__FILE__, ".gemspec")
2 version = ["lib", Array.new(name.count("-")+1).join("/")].find do |dir|
3   break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
4     /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
5   end rescue nil
6 end
8 Gem::Specification.new do |spec|
9   spec.name          = name
10   spec.version       = version
11   spec.authors       = ["Tanaka Akira"]
12   spec.email         = ["akr@fsij.org"]
14   spec.summary       = %q{Interface for secure random number generator.}
15   spec.description   = %q{Interface for secure random number generator.}
16   spec.homepage      = "https://github.com/ruby/securerandom"
17   spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
18   spec.licenses      = ["Ruby", "BSD-2-Clause"]
20   spec.metadata["homepage_uri"] = spec.homepage
21   spec.metadata["source_code_uri"] = spec.homepage
23   # Specify which files should be added to the gem when it is released.
24   # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25   spec.files = Dir.chdir(__dir__) do
26     `git ls-files -z`.split("\x0").reject do |f|
27       (File.expand_path(f) == __FILE__) ||
28         f.start_with?(*%w[bin/ test/ spec/ features/ docs/ rakelib/ .document .git Gemfile Rakefile])
29     end
30   end
31   spec.bindir        = "exe"
32   spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33   spec.require_paths = ["lib"]
34 end