pry-byebug 1.0.0 → 1.0.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
  SHA1:
3
- metadata.gz: c079446464cffea15a38fd173ef57ef076bf9002
4
- data.tar.gz: 38c27e09ca3c57a6a1e322e49589a47e0316d301
3
+ metadata.gz: d388ded03e8c7f057f00f92ecd44818ceac9333f
4
+ data.tar.gz: 2ef7cd68a1358cc84e6bd8b6ba820e6eec62c43d
5
5
  SHA512:
6
- metadata.gz: 3750ce1963ae9660c470a81afbea8864e3cb79297278816468c2fadf779f968c7033f49da92aa7e67863c95215dd0c0952067ac4d1680df9bbd221e1de603cd9
7
- data.tar.gz: 27c62f7240695a1596a0c508211529f577ac6f9c6dcd6b5e91ab66132525c3e5d6a2e710b954b6f12c7ac28288b59ec8dbf9a38f3a36780f2c7a68933837996c
6
+ metadata.gz: 5653e6eb531c0883401a0a79a58557c8ba0ca0707d24b92ac6c366270ff1fda55225859fb7b611ae1670b1ef91bd0b341b9f37e88d11cc81634f84c2d4866bf6
7
+ data.tar.gz: aa31bd2f21a1e504ac84bab6679d1e3a5098afec0a6b02baf51e6748797b60c438ca6d011806087dd5f431f9f6a16d2eaa5e2e07f799624508aad9d6fb0044a0
@@ -1,7 +1,8 @@
1
- ## 1.0.0 (2013-05-07)
1
+ ## 1.0.0, 1.0.1 (2013-05-07)
2
2
 
3
3
  * Forked from [pry-debugger](https://github.com/nixme/pry-debugger) to support
4
4
  byebug
5
+ * Dropped pry-remote support
5
6
 
6
7
  ## 0.2.2 (2013-03-07)
7
8
 
@@ -71,7 +71,6 @@ module PryByebug
71
71
  # If stopped for a breakpoint or catchpoint, can't play any delayed steps
72
72
  # as they'll move away from the interruption point. (Unsure if scenario is
73
73
  # possible, but just keeping assertions in check.)
74
- p "Stop_reason: #{context.stop_reason}"
75
74
  @delayed = Hash.new(0) unless :step == context.stop_reason
76
75
 
77
76
  if @delayed[:next] > 0 # If any delayed nexts/steps, do 'em.
@@ -1,3 +1,3 @@
1
1
  module PryByebug
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-byebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gopal Patel