pry-auto_benching.rb 3.2.0 → 3.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf14cb05c17cd976eb2655d4667443d0c85d784f208c46aa94f890edf649cc2b
4
- data.tar.gz: 1c7a91b6010ce686b8de9f2a897b3ab7d84b7c343f7b2bb67f91cb332f76b268
3
+ metadata.gz: 1873ea1ffe7ac4f9fa18e2f5291d59aefd065c035172d382194e95d5abf96a7a
4
+ data.tar.gz: 1ed4a799c02641c6d0b88787209191bd350b4ec039acfcfbd7b242c71f9c8e39
5
5
  SHA512:
6
- metadata.gz: c7fcc9d22d1e984bcab972c29b650b991f54cd9357d275b274bf1cd9522631ff25512c352c02427b5e6de132599bc407b935d6713354d909f23edcefad636ef5
7
- data.tar.gz: 8b9b755573545e077c102a4e644ff27954f47df7c930cee0b8fdd7a00c4e16f7ec9809ebe7c1d107e9bf1869508bb98e564601bab8c7711ff716ed559bba0aac
6
+ metadata.gz: fa0a9e31977798e0898c13c934ee32e42e58b44d192b7f096bb872588faaa862af37d93ee1a9f919b35aeabdd096ad1fe2cecd1d892b0e2158e458caf50c1061
7
+ data.tar.gz: 9c75778fd225e5344c29fa8f9f7e426eb2a0201f55220ab8311b3e6bdbdf7ba91a74b4f038932a121976169b2eb0c6339c20d1838bfd6840c69a207a38589dc5
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v3.2.1
4
+
5
+ * Fix a silly error where `Moment` was defined under `Object` instead of
6
+ `Pry::AutoBenching`.
7
+
3
8
  ## v3.2.0
4
9
 
5
10
  * Add `lib/pry-auto_benching/moment.rb`.
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # @api private
5
5
  #
6
- Moment = Struct.new(:start_timestamp) do
6
+ class Pry::AutoBenching::Moment < Struct.new(:start_timestamp)
7
7
  attr_accessor :input
8
8
  attr_accessor :duration
9
9
  end
@@ -1,5 +1,5 @@
1
1
  class Pry
2
2
  module AutoBenching
3
- VERSION = "3.2.0"
3
+ VERSION = "3.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-auto_benching.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Gleeson