hoe-debugging 1.2.0 → 1.2.1
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 +4 -4
- data/CHANGELOG.rdoc +7 -0
- data/lib/hoe/debugging.rb +6 -4
- metadata +3 -4
- data/.gemtest +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35d6e015b401ba32ef53d3d72fc7beedf34e8a17
|
|
4
|
+
data.tar.gz: 7979d919b65bf5b448bd5e4303b14b01d478a20a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2c883caca56fcb3de78c3ca2888624097a79daeaab76889ac6f5d2f4425b9a376e3e811eb98b0eab6fd1de45c82788883417058e74098e543428da0a63fd8ac7
|
|
7
|
+
data.tar.gz: 87753338f248e30bfeb306b2477fc3fbb38ccd44bc0ff6d88a5c9d8cdb2c2928daba00f673a59762d3c388effa2c621b795df57223bfcb71ee15054fa35b6019
|
data/CHANGELOG.rdoc
CHANGED
data/lib/hoe/debugging.rb
CHANGED
|
@@ -10,7 +10,7 @@ class Hoe #:nodoc:
|
|
|
10
10
|
# * <tt>test:valgrind:mem0</tt>
|
|
11
11
|
|
|
12
12
|
module Debugging
|
|
13
|
-
VERSION = "1.2.
|
|
13
|
+
VERSION = "1.2.1" #:nodoc:
|
|
14
14
|
|
|
15
15
|
##
|
|
16
16
|
# Optional: Used to add flags to GDB. [default: <tt>[]</tt>]
|
|
@@ -54,7 +54,7 @@ class Hoe #:nodoc:
|
|
|
54
54
|
end
|
|
55
55
|
|
|
56
56
|
def hoe_debugging_run_valgrind command, cmdline_options=[]
|
|
57
|
-
sh "valgrind #{cmdline_options.join(' ')} #{command}"
|
|
57
|
+
sh "#{hoe_debugging_valgrind_helper.valgrind} #{cmdline_options.join(' ')} #{command}"
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
def hoe_debugging_check_for_suppression_file options
|
|
@@ -170,8 +170,10 @@ class Hoe #:nodoc:
|
|
|
170
170
|
nil
|
|
171
171
|
end
|
|
172
172
|
|
|
173
|
-
def valgrind
|
|
174
|
-
|
|
173
|
+
def valgrind
|
|
174
|
+
# note that valgrind will generally crap out on rubies >= 2.1
|
|
175
|
+
# unless we increase the max stack size beyond the default
|
|
176
|
+
"ulimit -s unlimited && valgrind"
|
|
175
177
|
end
|
|
176
178
|
|
|
177
179
|
private
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoe-debugging
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Barnette
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-12-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rdoc
|
|
@@ -117,7 +117,6 @@ extra_rdoc_files:
|
|
|
117
117
|
- Manifest.txt
|
|
118
118
|
- README.rdoc
|
|
119
119
|
files:
|
|
120
|
-
- ".gemtest"
|
|
121
120
|
- CHANGELOG.rdoc
|
|
122
121
|
- Manifest.txt
|
|
123
122
|
- README.rdoc
|
|
@@ -145,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
144
|
version: '0'
|
|
146
145
|
requirements: []
|
|
147
146
|
rubyforge_project:
|
|
148
|
-
rubygems_version: 2.4.
|
|
147
|
+
rubygems_version: 2.4.8
|
|
149
148
|
signing_key:
|
|
150
149
|
specification_version: 4
|
|
151
150
|
summary: A Hoe plugin to help you debug your C extensions
|
data/.gemtest
DELETED
|
File without changes
|