json_errors 0.1.0 → 0.1.1
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/Gemfile.lock +7 -7
- data/README.md +1 -0
- data/lib/json_errors/config.rb +9 -0
- data/lib/json_errors/rescuer.rb +3 -0
- data/lib/json_errors/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26354ae40f5933c7f0c361ff1ec64f238a6d27571315192ba030dc534c22066f
|
4
|
+
data.tar.gz: 206463accc495b565c19e66b1a8b1d9e0dc1df4fd21b22f50b6e5d6a36954c1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1426aa90ee3cb74f7dd1c3264d60cc5c5747bd170314ba6f19a4ac45d4200c44115e590648b8d298fa58253edf104c4a39aa97d40e893aeec70ec94451e3226f
|
7
|
+
data.tar.gz: c7662a61fcdb269b637914ed33712f4b54271304a7c85bb11e6aecb90322494d03c04cf861c9b64f9513ebadcdf369483bd7c066560e25b2324ebbb1a16a0e3c
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
json_errors (0.1.
|
4
|
+
json_errors (0.1.1)
|
5
5
|
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -141,22 +141,22 @@ GEM
|
|
141
141
|
rspec-mocks (3.10.2)
|
142
142
|
diff-lcs (>= 1.2.0, < 2.0)
|
143
143
|
rspec-support (~> 3.10.0)
|
144
|
-
rspec-rails (
|
145
|
-
actionpack (>=
|
146
|
-
activesupport (>=
|
147
|
-
railties (>=
|
144
|
+
rspec-rails (5.0.1)
|
145
|
+
actionpack (>= 5.2)
|
146
|
+
activesupport (>= 5.2)
|
147
|
+
railties (>= 5.2)
|
148
148
|
rspec-core (~> 3.10)
|
149
149
|
rspec-expectations (~> 3.10)
|
150
150
|
rspec-mocks (~> 3.10)
|
151
151
|
rspec-support (~> 3.10)
|
152
152
|
rspec-support (3.10.2)
|
153
|
-
rubocop (1.18.
|
153
|
+
rubocop (1.18.4)
|
154
154
|
parallel (~> 1.10)
|
155
155
|
parser (>= 3.0.0.0)
|
156
156
|
rainbow (>= 2.2.2, < 4.0)
|
157
157
|
regexp_parser (>= 1.8, < 3.0)
|
158
158
|
rexml
|
159
|
-
rubocop-ast (>= 1.
|
159
|
+
rubocop-ast (>= 1.8.0, < 2.0)
|
160
160
|
ruby-progressbar (~> 1.7)
|
161
161
|
unicode-display_width (>= 1.4.0, < 3.0)
|
162
162
|
rubocop-ast (1.8.0)
|
data/README.md
CHANGED
data/lib/json_errors/config.rb
CHANGED
@@ -3,9 +3,18 @@
|
|
3
3
|
require 'singleton'
|
4
4
|
|
5
5
|
module JsonErrors
|
6
|
+
# Main config class. It brings all the customizable params.
|
6
7
|
class Config
|
7
8
|
include Singleton
|
8
9
|
|
9
10
|
attr_accessor :error_dictionary, :custom_codes
|
11
|
+
|
12
|
+
def self.missing_config_error_meesage
|
13
|
+
<<~'MSG'
|
14
|
+
Configuration is missing. Run the generattor: `bundle exec rails g json_errors::install`
|
15
|
+
or create the initializer yourself.
|
16
|
+
Check out the README https://github.com/nomtek/JsonErrors/blob/main/README.md
|
17
|
+
MSG
|
18
|
+
end
|
10
19
|
end
|
11
20
|
end
|
data/lib/json_errors/rescuer.rb
CHANGED
@@ -9,6 +9,9 @@ module JsonErrors
|
|
9
9
|
|
10
10
|
included do
|
11
11
|
error_dictionary = JsonErrors.config.error_dictionary
|
12
|
+
raise JsonErrors::Config.missing_config_error_meesage if error_dictionary.blank?
|
13
|
+
raise JsonErrors::Config.missing_config_error_meesage if JsonErrors.config.custom_codes.blank?
|
14
|
+
|
12
15
|
error_dictionary.keys.reverse.each do |error_class|
|
13
16
|
rescue_from error_class do |error|
|
14
17
|
log_error(error)
|
data/lib/json_errors/version.rb
CHANGED