hoe-debugging 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f24bb3e781e5bc4c4c1ddb95e880bf28a40a1894
4
- data.tar.gz: b3a510a8a198cae2615baa0490960ade4bc3d6e3
3
+ metadata.gz: 9752b85471af7fb7b0cfb93374468f9363caed64
4
+ data.tar.gz: c8d2e617c71b3146a2edd80eb2c0183dcbde74bb
5
5
  SHA512:
6
- metadata.gz: f1c7e6a31deb7be0b00119d424c5ff2b8c0fc894e6bc4c7fae9befee8ce0d33bba574cf659c03c7f53af636e1c7f975d29d6d3b1ef3bc7a8ef98154a88ba0a8a
7
- data.tar.gz: 93b968c48d32f54a521a365fc55ae85f6d86fc8fcbbf1f7861be117561b3151220aca529ebf202a06acf63ea14c56a9e2313a100457e03c2c4b8b3c4efaaf9be
6
+ metadata.gz: aa0e8ae03198b52b4a8be27773a97f86a1aa6e9a1a7095d5a9f94604d3c571d60166caf7812b59eab0fb8dc36edea5c89a86eb87d59fc468f5bc4080e982ba49
7
+ data.tar.gz: 6cf3f10113efa0d8204742000dfb3d515bdb8c9f53a0196e67457b34ba44f71db6b08392bcfdd4c61198d136fa1fa0a1287ca658d15bf7879a8d03ae5bb63cb0
@@ -1,3 +1,10 @@
1
+ === 1.4.2 / 2017-06-19
2
+
3
+ Features:
4
+
5
+ * Allow matching suppression file on major Ruby version.
6
+
7
+
1
8
  === 1.4.1 / 2017-06-19
2
9
 
3
10
  Features:
@@ -11,7 +11,7 @@ class Hoe #:nodoc:
11
11
  # * <tt>test:valgrind:mem0</tt>
12
12
 
13
13
  module Debugging
14
- VERSION = "1.4.1" #:nodoc:
14
+ VERSION = "1.4.2" #:nodoc:
15
15
 
16
16
  ##
17
17
  # The exit code of valgrind when it detects an error.
@@ -144,6 +144,7 @@ class Hoe #:nodoc:
144
144
  matches = [formatted_ruby_version]
145
145
  matches << formatted_ruby_version.split(".")[0,3].join(".")
146
146
  matches << formatted_ruby_version.split(".")[0,2].join(".")
147
+ matches << formatted_ruby_version.split(".")[0,1].join(".")
147
148
  matches
148
149
  end
149
150
 
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.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Barnette
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
195
  version: '0'
196
196
  requirements: []
197
197
  rubyforge_project:
198
- rubygems_version: 2.6.10
198
+ rubygems_version: 2.6.12
199
199
  signing_key:
200
200
  specification_version: 4
201
201
  summary: A Hoe plugin to help you debug your C extensions