backports 1.16.3 → 1.16.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 1
3
3
  :build:
4
4
  :minor: 16
5
- :patch: 3
5
+ :patch: 4
data/backports.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{backports}
8
- s.version = "1.16.3"
8
+ s.version = "1.16.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Marc-Andr\303\251 Lafortune"]
@@ -46,10 +46,6 @@ class Random
46
46
  state == other.send(:state)
47
47
  end
48
48
 
49
- def inspect
50
- "#<#{self.class.name}:#{object_id}>"
51
- end
52
-
53
49
  private
54
50
  def state
55
51
  @mt.to_bignum
@@ -7,5 +7,10 @@ class Random
7
7
  class << self
8
8
  include Implementation
9
9
  end
10
+
11
+ def inspect
12
+ "#<#{self.class.name}:#{object_id}>"
13
+ end
14
+
10
15
  srand
11
16
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 16
8
- - 3
9
- version: 1.16.3
8
+ - 4
9
+ version: 1.16.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Marc-Andr\xC3\xA9 Lafortune"