appydays 0.5.0 → 0.5.1

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: ab72febd501e6dada1c4738598be500f24b98ab57183a8674e93e6622a82aaf4
4
- data.tar.gz: c906e8cc5af47912035269aada22d832dfcb338079ac210207c2cfa26ac3bc64
3
+ metadata.gz: 80170682f5494542ea76d2d6fd4301acbbfd7c5b8388b3d431ae2c7daa7e03d0
4
+ data.tar.gz: 1dae7bcb7f56835bc39f8562d708fada45e3dd8e555f26246a3165bcd2970ab4
5
5
  SHA512:
6
- metadata.gz: 65b183daf0a109fe1dc95f06a4bb1e842489541fd1fab7ec1c2794766a664334dd53e8b7adb8da5a80446fffe46bad7ff41c8e6076465d4fea05182c0956906b
7
- data.tar.gz: 4608508c05777a02fa77983b9d91cb597e4f995cd1b78af7ea363a301d91ec31245357f97610f658e25a577d9a96778a6fd5b798af3f62ef9a81cd6a8a450187
6
+ metadata.gz: 2110baac67b50e765f0b7d2306f71f007d75b89cbc25dde2f5602e25882a1ce01592c94919f1bff6f0093066f30e8983dd73e4b8b420a0ffde94ed301f72e78d
7
+ data.tar.gz: 98b244ba6540e6a53e437d32278db78e5451f74553924cf2d09df0237e089e44d1ce2922440faf6dc381a85d2ccbbdd415fc1f27dfb73537b9703efe0e012cc4
@@ -49,10 +49,14 @@ module Appydays::Configurable
49
49
  end
50
50
 
51
51
  ##
52
- # Restore all settings back to the values they were at config time.
53
- # Ie, undoes any manual attribute writes.
54
- def reset_configuration
55
- self._configuration_installer._reset
52
+ # Restore all settings back to the values they were at config time
53
+ # (undoes any manual attribute writes), and runs after_configured hooks.
54
+ #
55
+ # overrides can be passed, to apply new manual overrides
56
+ # before running after_configured hooks.
57
+ # This is very useful when testing classes that have an after_configured hook.
58
+ def reset_configuration(overrides={})
59
+ self._configuration_installer._reset(overrides)
56
60
  end
57
61
 
58
62
  ##
@@ -154,9 +158,10 @@ module Appydays::Configurable
154
158
  end
155
159
  end
156
160
 
157
- def _reset
161
+ def _reset(overrides)
158
162
  @settings.each do |k, v|
159
- @target.send("#{k}=".to_sym, v)
163
+ real_v = overrides.fetch(k, v)
164
+ @target.send("#{k}=".to_sym, real_v)
160
165
  end
161
166
  self._run_after_configured
162
167
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Appydays
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appydays
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lithic Tech
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-05 00:00:00.000000000 Z
11
+ date: 2023-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv