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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52a518a7503723522c18fbb65db7766c9188728a8421b64a28dda5e3b65b2433
4
- data.tar.gz: 7bf193b9587237aed34ab1272114e4046da7dc7deab0d670a5075fcbca091d66
3
+ metadata.gz: e1f60b4928d996a9544113e07827b1804e5cb5fbb434c15848b17aee8740cbb0
4
+ data.tar.gz: 5507d22e1be6d26b91a4aa14db3b338b5a80c770df0c542ae532db3e514a6d26
5
5
  SHA512:
6
- metadata.gz: 4d1b8edab2bf62739d39ea24a1b5b984043118548c54d3827a875316bacde7f347df17f463931ac026407069597599a665e161a918b86822d6008b3bd7f458b8
7
- data.tar.gz: 2a550526c4a2e07b7c185bc81bb92c57b571bab389612b69d7057322b95642d49541ca510bb15c18c96a1f00f66c6f214293d8da106ea983d544f0dbc746c70a
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, {}
@@ -1,3 +1,3 @@
1
1
  module SupermarketSync
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: supermarket_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Dwyer