ruby-debug-ide 0.4.23.beta8 → 0.4.23.beta9
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 +8 -8
- data/{ChangeLog → ChangeLog.md} +5 -0
- data/lib/ruby-debug-ide/commands/variables.rb +3 -2
- data/lib/ruby-debug-ide/version.rb +1 -1
- data/ruby-debug-ide.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZDNlOWQ2OTM2MGE5ZWQ2NTc5NzFkNWY5M2FkNmFiZjkwMjhjMWQ4YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzNiODE2YTEyMjc3MzM1YjM1MDI3YjlkYmQ1NmRkMDFhMWViZTQ3Mg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Y2U2OTJhMWE4NzhkNjZmMDU2N2MxOGFkM2ZkZjQ5OGMyMTBhMzJiMWRjNmU4
|
10
|
+
YTVkOWY4NTI5NzMzMDA2M2E3YTY2M2I0ZDE0NTM2NmY0NDQ2Y2Y2OTBiNzI2
|
11
|
+
Y2YwMTE5YmExMGE0ZjM3MjJkOGExNmViYzMzZGI2MzU1NDRiMmU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTAzMTVkOWNjZTk4ZTc2ZWJlM2EzNWFjMjhmMTBmNTIyNjEwOTFlOGZkNWMy
|
14
|
+
Yjg5Njk0MWM0NzcyNDcyMGIxZTY2OGZhNjFhZmJhNWViYjRiNzA3MjViNTA2
|
15
|
+
OTY0NTIwNzM3ZjJjOThkZDdlMzA5ZDMyODkzYTcyNWE2ZGE1NGI=
|
data/{ChangeLog → ChangeLog.md}
RENAMED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [0.4.23.beta9](https://github.com/ruby-debug/ruby-debug-ide/compare/v0.4.23.beta8...master)
|
2
|
+
|
3
|
+
* problem with calculating local varibales for 1.8 fixed
|
4
|
+
|
5
|
+
## "per-historical" changes
|
1
6
|
Dennis Ushakov <dennis.ushakov@gmail.com>
|
2
7
|
* run context commands on stopped thread to prevent segfaults (3c1b52d5091fccec447d5695d5b43e73f335cc54)
|
3
8
|
* enable building without deps (9b597f8ce2b97ed40bb57e55ad178cf8ce270fa9)
|
@@ -59,8 +59,9 @@ module Debugger
|
|
59
59
|
end
|
60
60
|
|
61
61
|
class VarInstanceCommand < Command # :nodoc:
|
62
|
-
# TODO: try to find out a way to use Kernel.binding
|
63
|
-
|
62
|
+
# TODO: try to find out a way to use Kernel.binding for Rubinius
|
63
|
+
# ::Kernel.binding doesn't for for ruby 1.8 (see RUBY-14679)
|
64
|
+
BINDING_COMMAND = (defined?(Rubinius) || RUBY_VERSION < '1.9') ? 'binding' : '::Kernel.binding'
|
64
65
|
|
65
66
|
def regexp
|
66
67
|
# id will be read as first match, name as post match
|
data/ruby-debug-ide.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-debug-ide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.23.
|
4
|
+
version: 0.4.23.beta9
|
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: 2014-09-
|
11
|
+
date: 2014-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -36,8 +36,8 @@ extensions:
|
|
36
36
|
extra_rdoc_files: []
|
37
37
|
files:
|
38
38
|
- CHANGES
|
39
|
-
- ChangeLog
|
40
39
|
- ChangeLog.archive
|
40
|
+
- ChangeLog.md
|
41
41
|
- Gemfile
|
42
42
|
- MIT-LICENSE
|
43
43
|
- Rakefile
|