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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19c9a0a0f8b98e6ff2aa760b235be925681b2d56
4
- data.tar.gz: 9b204bab5d8e2f054effcc3a6fc2eaf527916a93
3
+ metadata.gz: 8cab8bf32e622023129ac0e2f2dc31df6d9a7106
4
+ data.tar.gz: ee1c5ea848ddc392f57b6bd29827d2edf2e6c309
5
5
  SHA512:
6
- metadata.gz: 5f1221be2c438f441d24b1751820c1e25cd84be90b6d2a87d3ca50a830c025361dd0cbd2ae182e6f315f72e49b1d13c90cadb3bc44d15e0362a2e0a47bce08bd
7
- data.tar.gz: f2cce133a6207adae6cde406cc01d6bbf1cbc078dea433593a257a249b87140abfb2118d513a832a6b4e909341f699181ca495e24a7e6f2256bd2901bcf6ae6f
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[:webapi] = initialize_general_storage(:web_api, value, data)
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'
@@ -1,3 +1,3 @@
1
1
  module Appfuel
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appfuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Scott-Buccleuch