appfuel 0.5.5 → 0.5.6

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
  SHA1:
3
- metadata.gz: 93f75527f2efb11ba86b5a1ba554a7ff615860aa
4
- data.tar.gz: 1f8153c9013eb34048113c566859df6d4acab187
3
+ metadata.gz: 9b872574eb5144fa78c7334c325d1329308c97ea
4
+ data.tar.gz: dbdaa30f3fc8dbea57efe547a1c32d84cf869ff3
5
5
  SHA512:
6
- metadata.gz: 2eb1cab65a0b9e2b62866bf9637a3f24329c4f69aaef5e886343af2978d69a3b37656685c0889ca6cc3146064b3069786880c4995e57d1e58fdcf15b538417fc
7
- data.tar.gz: 3260090ac3d39fee5ec28739a113836e5cb6738b059f8b690e044fd5bfdac658c0f8498bb0f4e25460e2ec8574aa358db10bdba51a62216022a4864279fac190
6
+ metadata.gz: d588321d6a7c4ce57573ed3e60d9aaa6bfc474fde2abaccc191ccc90dda1698c18d211ec2a777aa9cf5728bf93fedbb6d4bdc9eaa321c797b4fdd0feea592ed7
7
+ data.tar.gz: 598e3156b838624e479879370fbde73c2127cdd0d49fddf2673773fb8f89c778be7e842026e1e6c0b20506b37441da096e18ddd844d8d82c34075de19fc42b89
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. (Pending ap
5
5
 
6
6
 
7
7
  # Releases
8
+ ## [[0.5.6]] (https://github.com/rsb/appfuel/releases/tag/0.5.5) 2017-07-11
9
+ ### Fixed
10
+ - Fixed registering classes in the feature initializer, it now skips when
11
+ already registered
12
+
8
13
  ## [[0.5.5]] (https://github.com/rsb/appfuel/releases/tag/0.5.5) 2017-07-11
9
14
  ### Fixed
10
15
  - Fixed web_api error handling, re-raised exception incorrectly
@@ -30,8 +30,9 @@ module Appfuel
30
30
  end
31
31
 
32
32
  container[:auto_register_classes].each do |klass|
33
- next unless klass.register_class?
34
- container.register(klass.container_class_path, klass)
33
+ key = klass.container_class_path
34
+ next if container.key?(key) || !klass.register_class?
35
+ container.register(key, klass)
35
36
  end
36
37
 
37
38
 
@@ -1,3 +1,3 @@
1
1
  module Appfuel
2
- VERSION = "0.5.5"
2
+ VERSION = "0.5.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appfuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Scott-Buccleuch
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-11 00:00:00.000000000 Z
11
+ date: 2017-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord