appfuel 0.3.1 → 0.3.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/appfuel/storage/repository/mapping_dsl.rb +1 -1
- data/lib/appfuel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cab8bf32e622023129ac0e2f2dc31df6d9a7106
|
|
4
|
+
data.tar.gz: ee1c5ea848ddc392f57b6bd29827d2edf2e6c309
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0f111688f9d93c6604e015850a81ee85bde71c098e5fb1c1875b43455bb4efa5415ebbaa056403c4f83b75753ebe1997efbe14b223af6566e1e775e768f2286
|
|
7
|
+
data.tar.gz: 3dfbfe00b6e902e8d9a254790575e010f2a78840a1eb2570f8c244f8dc57f2fdac3d32a2c8894bdd8ba7b931413b18fdde888cc356f95123240efe15efc20793
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. (Pending ap
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
# Releases
|
|
8
|
+
## [[0.3.2]](https://github.com/rsb/appfuel/releases/tag/0.3.2) 2017-06-20
|
|
9
|
+
### Fixed
|
|
10
|
+
- `mapping_dsl` invalid storage key fixed to `web_api` from `webapi`
|
|
11
|
+
|
|
8
12
|
## [[0.3.1]](https://github.com/rsb/appfuel/releases/tag/0.3.1) 2017-06-20
|
|
9
13
|
### Fixed
|
|
10
14
|
- `mapping_dsl` was missing `web_api`
|
|
@@ -145,7 +145,7 @@ module Appfuel
|
|
|
145
145
|
storage[:file] = initialize_file_storage(value)
|
|
146
146
|
elsif data.key?(:web_api)
|
|
147
147
|
value = data[:web_api]
|
|
148
|
-
storage[:
|
|
148
|
+
storage[:web_api] = initialize_general_storage(:web_api, value, data)
|
|
149
149
|
elsif data.key?(:storage) && data[:storage].is_a?(Array)
|
|
150
150
|
data[:storage].each do |type|
|
|
151
151
|
storage[type] = if type.to_s.downcase == 'file'
|
data/lib/appfuel/version.rb
CHANGED