ruby-debug-ide 0.4.28 → 0.4.29

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OGJiMGFhZTk3MjYxZmRmZTc5MGVhYzVjYjZhOWViODgwNGVmZWNkMw==
5
- data.tar.gz: !binary |-
6
- MzAyMGYyNzliMmI2YTI4Y2I0ZDZjNGVjNDE4MGYwMTc3MzgyYmU4MA==
2
+ SHA1:
3
+ metadata.gz: c949849f24a95a9b8a58a05d9e0ef90a2ec6eebf
4
+ data.tar.gz: 90cc89226d4c009dddb1d8a34bd6a9d65abfae77
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ZDhiYWVmZmI0MGM0NjdmYzM0ZTE4Mjc5MjhhOGFmM2I2MmY4YWM5ZmZkMjhj
10
- NDEyYzVlZDM1ZjEzZmYyMDA4Yjk1ZmRlYzY3YjdhN2RiNGEyODRjMzRkMjhh
11
- NjRlMjlkNDIwODc4YjI4MDBiYzNmYzI2MTFlZjU1YmY5ODY5Yjg=
12
- data.tar.gz: !binary |-
13
- YjVmNWM0MjAxZjA5NGRhZDdjNzQ2ZGExYzI3Yjk5MTc3ODQ1M2ZkNjA4ZThj
14
- NWZmNmFlOTJiNDRiZWVlMTU1NmQwODM1MmQ4NTVhYjY5ODMzMTQyY2QyYTA2
15
- YzJhZDlkMzExZTk0YjUyNjZiN2Q5OGYxOTgxZTA5NWZkZWRkZjU=
6
+ metadata.gz: 386ef8ccafda850e07dda732668d44900e0f34a3fc6a2e73b203aaf33d137008288505e1919f5c1ed5ae8278a380d901d5f6762e8413114213aa19fa3cd6c5f0
7
+ data.tar.gz: d6d3785b7115308273063a8936c3b33d2b4418a0bbedb86ed18b7dbd1dca53742d3fd7abde7c1048512257bd8f2f4d7c61aff4379472aeedfb6f754ed8f80599
@@ -1,3 +1,8 @@
1
+ ## [0.4.29](https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.28...v0.4.29)
2
+
3
+ * Fixed problem with evaluating "%"
4
+ [RUBY-16244](https://youtrack.jetbrains.com/issue/RUBY-16244)
5
+
1
6
  ## [0.4.28](https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.27...v0.4.28)
2
7
 
3
8
  * [better handling for escaped chars and slashes](https://github.com/ruby-debug/ruby-debug-ide/pull/68)
@@ -115,7 +115,7 @@ module Debugger
115
115
  str = str.to_s
116
116
  to_inspect = Command.unescape_incoming(str)
117
117
  max_time = Debugger.evaluation_timeout
118
- @printer.print_debug("Evaluating #{str} with timeout after %i sec", max_time)
118
+ @printer.print_debug("Evaluating %s with timeout after %i sec", str, max_time)
119
119
  timeout(max_time) do
120
120
  eval(to_inspect, b)
121
121
  end
@@ -1,3 +1,3 @@
1
1
  module Debugger
2
- IDE_VERSION='0.4.28'
2
+ IDE_VERSION='0.4.29'
3
3
  end
metadata CHANGED
@@ -1,33 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-debug-ide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.28
4
+ version: 0.4.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-06 00:00:00.000000000 Z
11
+ date: 2015-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.8.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.8.1
27
- description: ! 'An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans
28
- and RubyMine.
29
-
30
- '
27
+ description: |
28
+ An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
31
29
  email: rubymine-feedback@jetbrains.com
32
30
  executables:
33
31
  - rdebug-ide
@@ -81,17 +79,17 @@ require_paths:
81
79
  - lib
82
80
  required_ruby_version: !ruby/object:Gem::Requirement
83
81
  requirements:
84
- - - ! '>='
82
+ - - ">="
85
83
  - !ruby/object:Gem::Version
86
84
  version: 1.8.2
87
85
  required_rubygems_version: !ruby/object:Gem::Requirement
88
86
  requirements:
89
- - - ! '>='
87
+ - - ">="
90
88
  - !ruby/object:Gem::Version
91
89
  version: '0'
92
90
  requirements: []
93
91
  rubyforge_project: debug-commons
94
- rubygems_version: 2.4.5
92
+ rubygems_version: 2.4.4
95
93
  signing_key:
96
94
  specification_version: 4
97
95
  summary: IDE interface for ruby-debug.