pry-byebug 3.4.2 → 3.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8227e9b31dce0d5fdc30e79c02f9a15a6a8a44ad
4
- data.tar.gz: 8b687e5b2d7c2dd19aecab029e6b4fe6f620ce05
3
+ metadata.gz: 10e9af0d1babbe0fd8f69656d644cce07ed9fa83
4
+ data.tar.gz: 0d834301cb2e9b980edae997ec192fc44c2b59a0
5
5
  SHA512:
6
- metadata.gz: c2923fe47bd965277c177adf34f2dfa056381c09efe5fc8c83734bc54719771e98818dbcf48211785e314a73e3c75906ee44c1cf09d464d2c0c43bf3f8087b00
7
- data.tar.gz: ebee88b55aa7007995facd3896dc99e894ca081bd76ded074c3445c5dbe4a6e4575d4217b2784c83f8a1d837ec01714ec5abe2aa6dfe00f117a81b2342fd803b
6
+ metadata.gz: 92f94059cb2cec03ce2893b9c8e3f962a5b92bd6a4f96ae998a0f0b03e49f10169f4cd9a574330579496133fc7ca8ed45a8a74df3a501fc70428c498c5af8eff
7
+ data.tar.gz: 853220536d91dd5fa73d862174ffe1a889c049206c19b53dfbdf8b452c979423ebe5168799ab6bbfca0da199f0c27929a6a369fa8d314a289b51fee4603e5822
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 3.4.3 (2017-08-22)
6
+
7
+ ## Fixed
8
+
9
+ * Installation on old rubies after byebug dropping support for them.
10
+
5
11
  ## 3.4.2 (2016-12-06)
6
12
 
7
13
  ### Fixed
data/README.md CHANGED
@@ -33,13 +33,13 @@ puts 'Goodbye World' # Run 'next' in the console to move here.
33
33
 
34
34
  ## Installation
35
35
 
36
- Drop
36
+ Add
37
37
 
38
38
  ```ruby
39
39
  gem 'pry-byebug'
40
40
  ```
41
41
 
42
- in your Gemfile and run
42
+ to your Gemfile and run
43
43
 
44
44
  bundle install
45
45
 
@@ -41,7 +41,7 @@ module Byebug
41
41
  # Set up a number of navigational commands to be performed by Byebug.
42
42
  #
43
43
  def perform(action, options = {})
44
- return unless %i(
44
+ return unless %i[
45
45
  backtrace
46
46
  down
47
47
  finish
@@ -49,7 +49,7 @@ module Byebug
49
49
  next
50
50
  step
51
51
  up
52
- ).include?(action)
52
+ ].include?(action)
53
53
 
54
54
  send("perform_#{action}", options)
55
55
  end
@@ -70,7 +70,7 @@ module PryByebug
70
70
 
71
71
  private
72
72
 
73
- %w(delete disable enable disable_all delete_all).each do |command|
73
+ %w[delete disable enable disable_all delete_all].each do |command|
74
74
  define_method(:"process_#{command}") do
75
75
  breakpoints.send(*[command, opts[command]].compact)
76
76
  print_all
@@ -88,7 +88,7 @@ module PryByebug
88
88
 
89
89
  def new_breakpoint
90
90
  place = args.shift
91
- condition = args.join(' ') if 'if' == args.shift
91
+ condition = args.join(' ') if args.shift == 'if'
92
92
 
93
93
  bp = add_breakpoint(place, condition)
94
94
 
@@ -2,5 +2,5 @@
2
2
  # Main container module for Pry-Byebug functionality
3
3
  #
4
4
  module PryByebug
5
- VERSION = '3.4.2'.freeze
5
+ VERSION = '3.4.3'.freeze
6
6
  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: 3.4.2
4
+ version: 3.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rodríguez
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-06 00:00:00.000000000 Z
12
+ date: 2017-08-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry
@@ -29,16 +29,22 @@ dependencies:
29
29
  name: byebug
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '9.0'
35
+ - - "<"
36
+ - !ruby/object:Gem::Version
37
+ version: '9.1'
35
38
  type: :runtime
36
39
  prerelease: false
37
40
  version_requirements: !ruby/object:Gem::Requirement
38
41
  requirements:
39
- - - "~>"
42
+ - - ">="
40
43
  - !ruby/object:Gem::Version
41
44
  version: '9.0'
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: '9.1'
42
48
  description: |-
43
49
  Combine 'pry' with 'byebug'. Adds 'step', 'next', 'finish',
44
50
  'continue' and 'break' commands to control execution.
@@ -95,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
101
  version: '0'
96
102
  requirements: []
97
103
  rubyforge_project:
98
- rubygems_version: 2.6.8
104
+ rubygems_version: 2.6.12
99
105
  signing_key:
100
106
  specification_version: 4
101
107
  summary: Fast debugging with Pry.