exception_hunter 1.0.0 → 1.0.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: 6c804775027621de61eb328522e7a06259cef6f830d4f5b52a09da40ef99bb3a
4
- data.tar.gz: d366989c30f3e76c587259bbce188b117b78dec40e7a41b8473751ef52b5c43e
3
+ metadata.gz: 5657d47c0ace57c4aac4aa9ec45374739ff2a282271d9d3f7ec6c3e21cffd509
4
+ data.tar.gz: 999dccabdad8f6b8e78a6db43d8d8cb5ff9454fcd7bb0df7e93ede4bb8a04aea
5
5
  SHA512:
6
- metadata.gz: 74b86f508f6f88a42f857f1e62f137f94638c330a4a1c0416677c1ef427de0398e7c04250e06f6c41a452489b660277c02d12fdd3f666e17922d8e27c72c4357
7
- data.tar.gz: ce57f0a4277381df8b27fc8015746c66abbde9ffc98e656f52e92259d9b263bc22ceadf85061cb4e836d1935b97473125d08f2802ef456c4cdedb20dcb2014ac
6
+ metadata.gz: f01e7a68936214ac9c2673ad44d2603731d517bfdfa7a22f4f88669629328d26a8b2161233c844c87accd6b455831ebb8162ddf2dd4d9a80fd95a5c132571551
7
+ data.tar.gz: 7d84f1b86524e91f9d2b73c6f42fd4d75d34e3b946d5948a30513ef5fb1ee026dcfc58e09438bc27d881fdb4d63483442ad90c2bf8ca852acd33fabcdc3c8aeb
data/README.md CHANGED
@@ -29,7 +29,7 @@ You can check the full documentation at [https://rootstrap.github.io/exception_h
29
29
  Add Exception Hunter to your application's Gemfile:
30
30
 
31
31
  ```ruby
32
- gem 'exception_hunter', '~> 1.0.0'
32
+ gem 'exception_hunter', '~> 1.0'
33
33
  ```
34
34
 
35
35
  You may also need to add [Devise](https://github.com/heartcombo/devise) to your Gemfile
@@ -1,3 +1,3 @@
1
1
  module ExceptionHunter
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exception_hunter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno Vezoli
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-11-05 00:00:00.000000000 Z
12
+ date: 2020-12-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pagy
@@ -207,7 +207,6 @@ files:
207
207
  - lib/generators/exception_hunter/install/templates/create_exception_hunter_error_groups.rb.erb
208
208
  - lib/generators/exception_hunter/install/templates/create_exception_hunter_errors.rb.erb
209
209
  - lib/generators/exception_hunter/install/templates/exception_hunter.rb.erb
210
- - lib/tasks/code_analysis.rake
211
210
  - lib/tasks/exception_hunter_tasks.rake
212
211
  homepage: https://github.com/rootstrap/exception_hunter
213
212
  licenses:
@@ -1,7 +0,0 @@
1
- desc 'code analysis'
2
- task :code_analysis do
3
- sh 'bundle exec brakeman . -z -q'
4
- sh 'bundle exec rubocop app config lib spec'
5
- sh 'bundle exec reek app config lib'
6
- sh 'bundle exec rails_best_practices .'
7
- end