byebug 8.2.4 → 8.2.5

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: e2f8c00c7c49e0088256d1e0409a53a315c340ac
4
- data.tar.gz: 21b354804463e294bd663e1e16f5209fb16d07c0
3
+ metadata.gz: 727f87204d164208f5106683d269866c4226c411
4
+ data.tar.gz: 5ec864cf251f0b0d365cc1a1dd9308d59c41ee90
5
5
  SHA512:
6
- metadata.gz: 034ed4b72284b132a35d95ed9fe5605963afb2a9c98eaab35806fea373e138264d19d2a42321991ef07962b7ffe3245d494b70912329b48718528f82cc3da695
7
- data.tar.gz: 9c9b2b9d8979b106f512ee072415a3877ad89a9d9b15c9b8aa57299c56d79531d74d1f40ad170112f08161372a769132b9bbff3d9aaec64aaaeb076fad5ef804
6
+ metadata.gz: 845f95e29e95071ac483d4580f9ca603a6ec6064f89ddc49747f2f768a76b061739ee3ae26dfc69f90c955facf9104375fa10d5669c717ab7775dc2fb9e5bc28
7
+ data.tar.gz: ad29da5042821e9be12e8a1fe693c4d14b11ba3213c4abf8e18abc89c9494a69633fe85936a43bd6d5e349c4d930986715cf4c28562cb0035086d350e71eb27a
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 8.2.5 - 2016-04-27
6
+
7
+ ### Fixed
8
+
9
+ * Allows paths with spaces (#244, thanks @HookyQR).
10
+ * Allows paths with colons (#244, thanks @HookyQR).
11
+
5
12
  ## 8.2.4 - 2016-04-08
6
13
 
7
14
  ### Fixed
@@ -15,7 +15,7 @@ module Byebug
15
15
  self.allow_in_control = true
16
16
 
17
17
  def self.regexp
18
- /^\s* b(?:reak)? (?:\s+ (\S+))? (?:\s+ if \s+(.+))? \s*$/x
18
+ /^\s* b(?:reak)? (?:\s+ (.+?))? (?:\s+ if \s+(.+))? \s*$/x
19
19
  end
20
20
 
21
21
  def self.description
@@ -52,7 +52,7 @@ module Byebug
52
52
 
53
53
  def line_breakpoint(location)
54
54
  line_match = location.match(/^(\d+)$/)
55
- file_line_match = location.match(/^([^:]+):(\d+)$/)
55
+ file_line_match = location.match(/^(.+):(\d+)$/)
56
56
  return unless line_match || file_line_match
57
57
 
58
58
  file = line_match ? frame.file : file_line_match[1]
@@ -14,7 +14,7 @@ module Byebug
14
14
  self.allow_in_post_mortem = true
15
15
 
16
16
  def self.regexp
17
- /^\s* f(?:ile)? (?:\s+ (\S+))? \s*$/x
17
+ /^\s* f(?:ile)? (?:\s+ (.+))? \s*$/x
18
18
  end
19
19
 
20
20
  def self.description
@@ -3,5 +3,5 @@
3
3
  # Reopen main module to define the library version
4
4
  #
5
5
  module Byebug
6
- VERSION = '8.2.4'.freeze
6
+ VERSION = '8.2.5'.freeze
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: byebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.2.4
4
+ version: 8.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rodriguez
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-04-08 00:00:00.000000000 Z
13
+ date: 2016-04-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
189
  version: '0'
190
190
  requirements: []
191
191
  rubyforge_project:
192
- rubygems_version: 2.6.0
192
+ rubygems_version: 2.6.3
193
193
  signing_key:
194
194
  specification_version: 4
195
195
  summary: Ruby 2.0 fast debugger - base + CLI