prebundler 0.11.3 → 0.11.4
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.md +4 -0
- data/lib/prebundler/cli/install.rb +1 -0
- data/lib/prebundler/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: 8a1d8c42efac97a9a231f819c72b4882edaa990267bdba2409f67cbb0a475e44
|
|
4
|
+
data.tar.gz: a34cacca7e651248c255c46d357b52c8ac3535f50972cd56d696f7bfe6f121cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d7008ebbf5314f02bbf992e4a6a8a7a2c05fae161427b902a12565a46bb70747a0d2e3c912d4ed45e557cc5b8616d7c906cf3d12dbade1733206664971f15e5
|
|
7
|
+
data.tar.gz: 63a314e575817c6123e3895322c507349753c383afd541a92343c6d0999306d9ea1d381492057febe7779c6098a0dd10078328bd87080ead9a99d9dbe1e0f76d
|
data/CHANGELOG.md
CHANGED
|
@@ -118,6 +118,7 @@ module Prebundler
|
|
|
118
118
|
config = File.exist?(file) ? YAML.load_file(file) : {}
|
|
119
119
|
config['BUNDLE_WITH'] = with_groups.join(':') unless with_groups.empty?
|
|
120
120
|
config['BUNDLE_WITHOUT'] = without_groups.join(':') unless without_groups.empty?
|
|
121
|
+
FileUtils.mkdir_p(File.dirname(file))
|
|
121
122
|
File.write(file, YAML.dump(config))
|
|
122
123
|
end
|
|
123
124
|
|
data/lib/prebundler/version.rb
CHANGED