appfuel 0.6.3 → 0.6.4
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 +10 -0
- data/lib/appfuel/handler/action.rb +3 -1
- data/lib/appfuel/handler/validator_dsl.rb +1 -0
- data/lib/appfuel/storage/repository/base.rb +4 -0
- data/lib/appfuel/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 291bad00d1de9144841e6a765ac34115a6839246
|
|
4
|
+
data.tar.gz: b5d4dd8aec1cf1fdaf3dfc6f788d3e3924eb168b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5669227bdc10b862bca2a77dfe1066776951b141f531fbd7a3596b41e886004158036fe0b2a57087b38e91e49b47e92c36def39cbfbe44f67824bd8f5f67d883
|
|
7
|
+
data.tar.gz: 6de05a3a86a18f201ee4326a137e147ef2c1ddb60086fd73920f0ca1d2b62a365517f38ea8e1bdf13e53ca1e9c2de9c6cefdcceff5f2d27eafd64b009216d783
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. (Pending ap
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
# Releases
|
|
8
|
+
## [[0.6.4]](https://github.com/rsb/appfuel/releases/tag/0.6.4) 2017-08-18
|
|
9
|
+
### Fixed
|
|
10
|
+
- invalid reference to `feature_name` in action's `dispatch`
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `handlers` will now always deep symbolize their input keys
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- `repository` now has a `timestamp` which gives `Time.now.utc.iso8601`
|
|
17
|
+
|
|
8
18
|
## [[0.6.3]](https://github.com/rsb/appfuel/releases/tag/0.6.3) 2017-08-14
|
|
9
19
|
### Fixed
|
|
10
20
|
- invalid method is web_api/http_model when checking url
|
|
@@ -20,7 +20,9 @@ module Appfuel
|
|
|
20
20
|
route = route.to_s
|
|
21
21
|
fail "route can not be empty" if route.empty?
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
unless route.include?('/')
|
|
24
|
+
route = "#{self.class.container_feature_name}/#{route}"
|
|
25
|
+
end
|
|
24
26
|
root = app_container[:root]
|
|
25
27
|
root.call(route, payload)
|
|
26
28
|
end
|
data/lib/appfuel/version.rb
CHANGED
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.6.
|
|
4
|
+
version: 0.6.4
|
|
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-08-
|
|
11
|
+
date: 2017-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|