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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cdc3177ab2716955fe5b508b537af26376724b40b3a637d6ddf157b826a4526
4
- data.tar.gz: 841367d8cab569af54ecea2abbfee47ebdfedd9fad0b4d72398e0eb8e20b5005
3
+ metadata.gz: 26354ae40f5933c7f0c361ff1ec64f238a6d27571315192ba030dc534c22066f
4
+ data.tar.gz: 206463accc495b565c19e66b1a8b1d9e0dc1df4fd21b22f50b6e5d6a36954c1e
5
5
  SHA512:
6
- metadata.gz: e23778be3a5a40ebdbfe98efa22d1dd9f74c4e732827793d7f8ac8092da676ccedaed49336628bbc2ab3fd4dc1da237fe15f6f25702a53c185cf5d8b464959f1
7
- data.tar.gz: 0fac03157c291d08b64d96406382186f637aa90e2c74634d05c7fc0af933be63640ac19fd850d1408f23776fe8746334be76cc26d2faa0babfceb189dfa98999
6
+ metadata.gz: 1426aa90ee3cb74f7dd1c3264d60cc5c5747bd170314ba6f19a4ac45d4200c44115e590648b8d298fa58253edf104c4a39aa97d40e893aeec70ec94451e3226f
7
+ data.tar.gz: c7662a61fcdb269b637914ed33712f4b54271304a7c85bb11e6aecb90322494d03c04cf861c9b64f9513ebadcdf369483bd7c066560e25b2324ebbb1a16a0e3c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2021-07-27
4
+
5
+ - Missing configuration error added
6
+
3
7
  ## [0.1.0] - 2021-07-21
4
8
 
5
9
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- json_errors (0.1.0)
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 (4.0.2)
145
- actionpack (>= 4.2)
146
- activesupport (>= 4.2)
147
- railties (>= 4.2)
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.3)
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.7.0, < 2.0)
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
@@ -1,3 +1,4 @@
1
+ ![example workflow](https://github.com/nomtek/JsonErrors/actions/workflows/main.yml/badge.svg)
1
2
  # JsonErrors
2
3
 
3
4
  Welcome to Ruby on Rails gem for handling the JSON API errors.
@@ -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
@@ -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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JsonErrors
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_errors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Łukasz Pająk