nekonote-framework 1.0.0.pre.beta5 → 1.0.0.pre.beta6
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/lib/nekonote/preference.rb +6 -1
- data/lib/nekonote/rack/url_mapper.rb +1 -1
- data/lib/nekonote/spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e8590189de70e359db4f9bfa8a491bbafc1becc543460ffef6f3424c4d5a355
|
|
4
|
+
data.tar.gz: 5c126bb0ea314fbd8393a76088f3b9abcc49b37f3db21780bba6c0998a8edf0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6af6b480387f047aaf6b0b951bee0d2b71bb5f6abe2aa36d33bb7acbd7ba851bca52c6f49fe0b438e41222093de9721d56adb346b70c090f480457bf0681bc1
|
|
7
|
+
data.tar.gz: 8a14b10a3187236f5924c10c6c2c3dc2cfe5d8c3f774e5c8296f265d0124c5f821ed78e420ca0413e4750a7c72d3aa83ecaad97720e544bafbdafc5e9df095eb
|
data/lib/nekonote/preference.rb
CHANGED
|
@@ -136,7 +136,12 @@ module Nekonote
|
|
|
136
136
|
return false
|
|
137
137
|
end
|
|
138
138
|
|
|
139
|
-
|
|
139
|
+
# check if the field exists
|
|
140
|
+
if !@parsed_route_error_yml.is_a?(Hash) || !@parsed_route_error_yml[field].is_a?(Hash)
|
|
141
|
+
return false
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
return @parsed_route_error_yml[field][FIELD_ROUTE_HANDLER].is_a?(String)
|
|
140
145
|
end
|
|
141
146
|
|
|
142
147
|
# @return bool
|
data/lib/nekonote/spec.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Nekonote
|
|
2
2
|
LIBS_NAME = %(nekonote-framework).freeze
|
|
3
|
-
VERSION = %(1.0.0-
|
|
3
|
+
VERSION = %(1.0.0-beta6).freeze
|
|
4
4
|
HOMEPAGE = %(https://nekonote-framework.github.io).freeze
|
|
5
5
|
SUMMARY = %(Simple and Lightweight Ruby Framework for Web Development).freeze
|
|
6
6
|
DESCRIPTION = %(Nekonote Framework is a small web application framework that helps your web development.).freeze
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nekonote-framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
4
|
+
version: 1.0.0.pre.beta6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- khotta
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: color_echo
|