summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-03-30 14:07:22 +0900
committergit <svn-admin@ruby-lang.org>2023-04-14 01:43:47 +0000
commitebe620def601d804b7dba1e00132b9bc10d5ef6f (patch)
tree14610d900c8dd4199bfb0d9dc092baa76a2b8cbb /lib
parent60f22ebf86248388b41b4ec751d16700f2b4b621 (diff)
downloadruby-ebe620def601d804b7dba1e00132b9bc10d5ef6f.tar.gz
[ruby/securerandom] Expose SecureRandom::VERSION
https://github.com/ruby/securerandom/commit/2e6434331d
Diffstat (limited to 'lib')
-rw-r--r--lib/securerandom.gemspec11
-rw-r--r--lib/securerandom.rb3
2 files changed, 12 insertions, 2 deletions
diff --git a/lib/securerandom.gemspec b/lib/securerandom.gemspec
index e095244ce9..f42ddbcc97 100644
--- a/lib/securerandom.gemspec
+++ b/lib/securerandom.gemspec
@@ -1,6 +1,13 @@
+name = File.basename(__FILE__, ".gemspec")
+version = ["lib", Array.new(name.count("-")+1).join("/")].find do |dir|
+ break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
+ /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
+ end rescue nil
+end
+
Gem::Specification.new do |spec|
- spec.name = "securerandom"
- spec.version = "0.2.2"
+ spec.name = name
+ spec.version = version
spec.authors = ["Tanaka Akira"]
spec.email = ["akr@fsij.org"]
diff --git a/lib/securerandom.rb b/lib/securerandom.rb
index c5be6ce734..9faa09e4e0 100644
--- a/lib/securerandom.rb
+++ b/lib/securerandom.rb
@@ -39,6 +39,9 @@ require 'random/formatter'
# +NotImplementedError+ is raised.
module SecureRandom
+
+ VERSION = "0.2.2"
+
class << self
def bytes(n)
return gen_random(n)