hoe-debugging 1.4.0 → 1.4.1

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: f3934e0e164a722183698cc4860ab7d596bdad91
4
- data.tar.gz: 04b21b2e1ea75b76ab71229f43563ba494525f8d
3
+ metadata.gz: f24bb3e781e5bc4c4c1ddb95e880bf28a40a1894
4
+ data.tar.gz: b3a510a8a198cae2615baa0490960ade4bc3d6e3
5
5
  SHA512:
6
- metadata.gz: 638f74e040708f28a40c3e01480fa9b89bffac0d574159c187049715526ab45ecbc350fe8b3821aaefff420b8eece9f1021ccc9ff2d97f3ce47a9bde9518387f
7
- data.tar.gz: 48dde34dd58efbb1d62e0e06981fb276da4c955a1d220f17907be3b3824bc15a87921584e8f61159abe6b68f109d9dc57c038fdde0550406bc5ee9059a652d1a
6
+ metadata.gz: f1c7e6a31deb7be0b00119d424c5ff2b8c0fc894e6bc4c7fae9befee8ce0d33bba574cf659c03c7f53af636e1c7f975d29d6d3b1ef3bc7a8ef98154a88ba0a8a
7
+ data.tar.gz: 93b968c48d32f54a521a365fc55ae85f6d86fc8fcbbf1f7861be117561b3151220aca529ebf202a06acf63ea14c56a9e2313a100457e03c2c4b8b3c4efaaf9be
@@ -1,3 +1,10 @@
1
+ === 1.4.1 / 2017-06-19
2
+
3
+ Features:
4
+
5
+ * Support frozen string constants.
6
+
7
+
1
8
  === 1.4.0 / 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.0" #:nodoc:
14
+ VERSION = "1.4.1" #:nodoc:
15
15
 
16
16
  ##
17
17
  # The exit code of valgrind when it detects an error.
@@ -155,7 +155,7 @@ class Hoe #:nodoc:
155
155
  line = logfile.readline
156
156
  if suppression.nil?
157
157
  if line =~ /\<insert_a_suppression_name_here\>/
158
- suppression = "{\n"
158
+ suppression = String.new "{\n"
159
159
  suppression << line
160
160
  end
161
161
  else
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.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Barnette