ruby-debug-ide 0.4.17.beta17 → 0.4.17
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 +7 -0
- data/ext/mkrf_conf.rb +3 -3
- data/lib/ruby-debug-ide/multiprocess/starter.rb +1 -1
- data/lib/ruby-debug-ide/version.rb +1 -1
- metadata +12 -18
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a3695c0c207fb973cfc366a20ef61303c1ec3b7d
|
|
4
|
+
data.tar.gz: 8854f12aa66822cd476ad18ca97a781aebdddea9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 075e9acad0ded71508b207aaea07d6432363d447c0ba5452df0f19b5fc1971d3d61d51e02a7279083c81db5f2b88048dca2f7558036a2719e96da0c8678bae44
|
|
7
|
+
data.tar.gz: 58a5fa83aaaae61c545dc5d2929204d7813bdb66101f882a13744c62291a275a19368bd3a3c2bcef8cd47b83baddcadf5184d3eaa99057b2e6f4e04b36e2f227
|
data/ext/mkrf_conf.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
jruby = defined?(JRUBY_VERSION) || (defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE)
|
|
2
2
|
|
|
3
3
|
def already_installed(dep)
|
|
4
|
-
Gem::DependencyInstaller.new(:domain => :local).find_gems_with_sources(dep) ||
|
|
5
|
-
Gem::DependencyInstaller.new(:domain => :local,:prerelease => true).find_gems_with_sources(dep)
|
|
4
|
+
!Gem::DependencyInstaller.new(:domain => :local).find_gems_with_sources(dep).empty? ||
|
|
5
|
+
!Gem::DependencyInstaller.new(:domain => :local,:prerelease => true).find_gems_with_sources(dep).empty?
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
unless jruby
|
|
@@ -21,7 +21,7 @@ unless jruby
|
|
|
21
21
|
elsif RUBY_VERSION < '2.0'
|
|
22
22
|
dep = Gem::Dependency.new("ruby-debug-base19x", '>=0.11.24')
|
|
23
23
|
else
|
|
24
|
-
|
|
24
|
+
dep = Gem::Dependency.new("debase", '> 0')
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
begin
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
if ENV['IDE_PROCESS_DISPATCHER']
|
|
2
2
|
require 'rubygems'
|
|
3
3
|
ENV['DEBUGGER_STORED_RUBYLIB'].split(File::PATH_SEPARATOR).each do |path|
|
|
4
|
-
next unless path =~ /ruby-debug-ide|ruby-debug-base|linecache/
|
|
4
|
+
next unless path =~ /ruby-debug-ide|ruby-debug-base|linecache|debase/
|
|
5
5
|
$LOAD_PATH << path
|
|
6
6
|
end
|
|
7
7
|
require 'ruby-debug-ide'
|
metadata
CHANGED
|
@@ -1,36 +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.17
|
|
5
|
-
prerelease: 7
|
|
4
|
+
version: 0.4.17
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-03 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rake
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: 0.8.1
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - '>='
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: 0.8.1
|
|
30
|
-
description:
|
|
31
|
-
and RubyMine.
|
|
32
|
-
|
|
33
|
-
'
|
|
27
|
+
description: |
|
|
28
|
+
An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
|
|
34
29
|
email: rubymine-feedback@jetbrains.com
|
|
35
30
|
executables:
|
|
36
31
|
- rdebug-ide
|
|
@@ -76,26 +71,25 @@ files:
|
|
|
76
71
|
- lib/ruby-debug-ide.rb
|
|
77
72
|
homepage: https://github.com/ruby-debug/ruby-debug-ide
|
|
78
73
|
licenses: []
|
|
74
|
+
metadata: {}
|
|
79
75
|
post_install_message:
|
|
80
76
|
rdoc_options: []
|
|
81
77
|
require_paths:
|
|
82
78
|
- lib
|
|
83
79
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
-
none: false
|
|
85
80
|
requirements:
|
|
86
|
-
- -
|
|
81
|
+
- - '>='
|
|
87
82
|
- !ruby/object:Gem::Version
|
|
88
83
|
version: 1.8.2
|
|
89
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
|
-
none: false
|
|
91
85
|
requirements:
|
|
92
|
-
- -
|
|
86
|
+
- - '>='
|
|
93
87
|
- !ruby/object:Gem::Version
|
|
94
|
-
version:
|
|
88
|
+
version: '0'
|
|
95
89
|
requirements: []
|
|
96
90
|
rubyforge_project: debug-commons
|
|
97
|
-
rubygems_version:
|
|
91
|
+
rubygems_version: 2.0.3
|
|
98
92
|
signing_key:
|
|
99
|
-
specification_version:
|
|
93
|
+
specification_version: 4
|
|
100
94
|
summary: IDE interface for ruby-debug.
|
|
101
95
|
test_files: []
|