ruby-debug-ide 0.4.24.beta4 → 0.4.24.beta5

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
- NGU4NDUzY2M3ZWY5YjExYmU1YTY3MTJiYzA1ZTFhNGU2MDc4NDc2Yw==
5
- data.tar.gz: !binary |-
6
- ZTQyNDJlZjIwN2UzZjRiZWU2Yzc5YTVkYjA0NzJlMGRiNGFkOGNmNQ==
2
+ SHA1:
3
+ metadata.gz: e313bb0487d5877d7b02f00f5a6fa6df670ae568
4
+ data.tar.gz: 9f4a6d9bf3a5f84b82fd39d5da5212b11656e01f
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MGE1MDU5ZWEzNDFiM2IwZjY5ZjVkYTc5NjE3MzAwNTU5Y2M5MTU0NGU0OWU3
10
- NmQwZjJiZmVmZjUzMGNiYzQ2YTMxMDVhYmE2MGNiNGE0ZWVjMjBjMzM5NWQ4
11
- NDczZjEyMTdiN2QxMmZlNWVkYTYzMjFlNmQ4OTU5YjE4MmQ3YmE=
12
- data.tar.gz: !binary |-
13
- OWE2YzFjNDExY2UyNjM0ZDUwMDhmNmZkODVmOTNiZTllYmI3MDdhNDA1ZGRm
14
- ODkxN2U5NTY5ZWIyZWUwNDBlZWEwN2M5ZjFiODMyNjI3MmZjYzI2M2ExNjE4
15
- NTE2YWI2NzdhYjVkZWNmMDllZGIxNWRlY2JlNmFkZTQxZjI1ZWY=
6
+ metadata.gz: edca8948b1cc43c93c6aec39eb9937d2da18273a4a20352e1304eae9220ad2fe50f0863a4790aecf260eebeace6f9b00ce847c111d1bc2a26cdd8a9c747e2148
7
+ data.tar.gz: 7d12e3ca2a13225388aeb5ae65dadef6721b48a363dcd2ede70b99364f38f9588c608e899e33ab88ae0eeb167cd4cd2c1613b08c65f62cbbbc267f50d4d63ba4
@@ -1,3 +1,7 @@
1
+ ## [0.4.24.beta5](https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.24.beta4...v0.4.24.beta5)
2
+
3
+ * do not print empty value attr in case RubyMine-specific protocol extensions are enabled
4
+
1
5
  ## [0.4.24.beta4](https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.23...v0.4.24.beta4)
2
6
 
3
7
  * Performance optimisation for variable representation [RUBY-16055](https://youtrack.jetbrains.com/issue/RUBY-16055)
@@ -1,3 +1,3 @@
1
1
  module Debugger
2
- IDE_VERSION='0.4.24.beta4'
2
+ IDE_VERSION='0.4.24.beta5'
3
3
  end
@@ -172,7 +172,7 @@ module Debugger
172
172
  end
173
173
  value_str = handle_binary_data(value_str)
174
174
  escaped_value_str = CGI.escapeHTML(value_str)
175
- print("<variable name=\"%s\" %s kind=\"%s\" value=\"%s\" type=\"%s\" hasChildren=\"%s\" objectId=\"%#+x\">",
175
+ print("<variable name=\"%s\" %s kind=\"%s\" %s type=\"%s\" hasChildren=\"%s\" objectId=\"%#+x\">",
176
176
  CGI.escapeHTML(name), build_compact_value_attr(value), kind, build_value_attr(escaped_value_str), value.class,
177
177
  has_children, value.respond_to?(:object_id) ? value.object_id : value.id)
178
178
  print("<value><![CDATA[%s]]></value>", escaped_value_str) if Debugger.rm_protocol_extensions
@@ -371,7 +371,7 @@ module Debugger
371
371
  end
372
372
 
373
373
  def build_value_attr(escaped_value_str)
374
- Debugger.rm_protocol_extensions ? '' : escaped_value_str
374
+ Debugger.rm_protocol_extensions ? '' : "value=\"#{escaped_value_str}\""
375
375
  end
376
376
 
377
377
  instance_methods.each do |m|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-debug-ide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.24.beta4
4
+ version: 0.4.24.beta5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team
@@ -14,20 +14,18 @@ dependencies:
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: 1.3.1
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.