build-environment 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe7aa5350c0a0b7f20173f1b606a53612cc8c0eb
4
- data.tar.gz: 6927c6e07f7c74356c4169c11421a6e274caad10
3
+ metadata.gz: f019e45793e325e7ca7fb83434371a8e06ec8705
4
+ data.tar.gz: 4f4d0443144dd0c6702a85aedae1ed9b70648b04
5
5
  SHA512:
6
- metadata.gz: 3ad78c5d5e9fcd2af1aa9387dea06caec6841d83cd2c57ea88969ec30990952e07ae7b82acc59f8514ea0154a243eee86d0a8dd132272d93349047042b18f1fa
7
- data.tar.gz: 4525981ee5c236120037de512f1a32cf4a439d105b452cc190a225acd45068b84460db6a703143808edf15276cf49d8f7fe2b2d95310b5f949d80dea77c3530f
6
+ metadata.gz: 76ee398464cb685b78abd71759273ba5d0c7fbd9a71c1929002cc2c4d91b7fa23430c78430a5a5a3958a8b3019804f86c54acd891daec1da1668b20ea8bbabe1
7
+ data.tar.gz: eef77b8cfcf11992d371717506e0b37b6eda26861405cbae65ba45cd8cf32fff67e82197fa1d7423c8bb059fd08969925a44cdcefdf9076ee0d701ffbd0df120
@@ -70,16 +70,8 @@ module Build
70
70
  @values[key] = value
71
71
  end
72
72
 
73
- def inspect
74
- "#<#{self.class} #{self.to_s}>"
75
- end
76
-
77
73
  def to_s
78
- if @parent
79
- "#{@parent}->#{@values}"
80
- else
81
- @values.to_s
82
- end
74
+ self.to_hash.to_s
83
75
  end
84
76
  end
85
77
  end
@@ -47,14 +47,6 @@ module Build
47
47
  @values.select{|name,value| Define === value}
48
48
  end
49
49
 
50
- def inspect(output = $stdout, indent = "")
51
- @values.each do |(key, value)|
52
- output.puts "#{indent}#{key}: #{value}"
53
- end
54
-
55
- @parent.inspect(output, indent + "\t") if @parent
56
- end
57
-
58
50
  def checksum(digester: Digest::MD5.new)
59
51
  checksum_recursively(digester)
60
52
 
@@ -1,5 +1,5 @@
1
1
  module Build
2
2
  class Environment
3
- VERSION = "1.1.1"
3
+ VERSION = "1.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-environment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams