supermarket_sync 0.1.1 → 0.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/supermarket_sync/config.rb +2 -2
- data/lib/supermarket_sync/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: e1f60b4928d996a9544113e07827b1804e5cb5fbb434c15848b17aee8740cbb0
|
|
4
|
+
data.tar.gz: 5507d22e1be6d26b91a4aa14db3b338b5a80c770df0c542ae532db3e514a6d26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afa06944d96aac246ce5578c0d1bfd243a57c8240cec0ae50608dc9c84dc2e6e457a4b151aec30c73a65a203fa710fbb3fa3dfba8cddd1699e35d75df46308bf
|
|
7
|
+
data.tar.gz: 81f4d51283cba0e0bce399b3ad57c93d6c99396a96f7cc11a548ea7c5c951757ee7b493146497a7853abc33e7005dbcfd6b69f19dd071a3c7f82c6e2ca395e51
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@ SupermarketSync Changelog
|
|
|
2
2
|
=========================
|
|
3
3
|
This file is used to list changes made in each version of the `supermarket_sync` gem.
|
|
4
4
|
|
|
5
|
+
v0.1.2 (2016-11-12)
|
|
6
|
+
-------------------
|
|
7
|
+
- Expose more configuration via environment variables
|
|
8
|
+
|
|
5
9
|
v0.1.1 (2016-11-12)
|
|
6
10
|
-------------------
|
|
7
11
|
- Fix for non-existing cookbooks
|
|
@@ -25,10 +25,10 @@ module SupermarketSync
|
|
|
25
25
|
define_setting :author, 'Brian Dwyer - Broadridge Financial Services'
|
|
26
26
|
|
|
27
27
|
# => Config File
|
|
28
|
-
define_setting :config_file, File.join(root, 'config', 'config.json')
|
|
28
|
+
define_setting :config_file, ENV['SM_SYNC_CONFIG'] || File.join(root, 'config', 'config.json')
|
|
29
29
|
|
|
30
30
|
# => Cookbooks File
|
|
31
|
-
define_setting :cookbooks_file, File.join(root, 'config', 'cookbooks.json')
|
|
31
|
+
define_setting :cookbooks_file, ENV['SM_SYNC_COOKBOOKS'] || File.join(root, 'config', 'cookbooks.json')
|
|
32
32
|
|
|
33
33
|
# => Supermarket Configuration
|
|
34
34
|
define_setting :supermarkets, {}
|