flight_config 0.3.2 → 0.3.3
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/lib/flight_config.rb +2 -0
- data/lib/flight_config/indexable.rb +2 -1
- data/lib/flight_config/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdb6b722c3593c8c5ada1ea12535b34260c0de15d4e5e1e54d63224acccbb05e
|
|
4
|
+
data.tar.gz: bb945b9cadecd55af47265ce07c8c3a2244c86b837cdffac8b5702fa093a391d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 326fcba68070a8b6171cc9401a6b5162008f8e8c5d4e12ff3c2b67a7e205731e2561eb57e056cd5a774a608ceb4193b76bf0f0b45711e407785d71e4984bbdb1
|
|
7
|
+
data.tar.gz: f604e20bd293b59c962745e952a23a091f4d43cec93071c314a2a57d658bab1073c8180d40d8cdbd4b680266cc678e47abc019415a21c5a688930bd8641a92fc
|
data/lib/flight_config.rb
CHANGED
|
@@ -39,11 +39,12 @@ module FlightConfig
|
|
|
39
39
|
|
|
40
40
|
module ClassMethods
|
|
41
41
|
include FlightConfig::Reader::ClassMethods
|
|
42
|
+
include FlightConfig::Globber::ClassMethods
|
|
42
43
|
|
|
43
44
|
def glob_read(*a)
|
|
44
45
|
super.reject do |index|
|
|
45
46
|
next if index.valid?
|
|
46
|
-
FileUtils.rm_f path
|
|
47
|
+
FileUtils.rm_f index.path
|
|
47
48
|
true
|
|
48
49
|
end
|
|
49
50
|
end
|