api_exception 1.1.0 → 1.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: 31dae7bf907380e156ff2739d9c380858146e6202923c29c9cc092240ffaf754
4
- data.tar.gz: 03b08162c084c846b1844b17e5d21103759f6ffc7557f2136418d634edba74d7
3
+ metadata.gz: 8b90703e1bb43fa3822e44d1b51e37a8a9ac66ba6229351e40eeffe7bee4020a
4
+ data.tar.gz: 4f806eabfe86079a1dd7882d37c0c3c5fea70e7bb642ed6f628f30bad57c2c0f
5
5
  SHA512:
6
- metadata.gz: 0b3a56f7b1df66be42077498dd68857b2f04c4acdafa75de1762a2b7ded78639fcbbb85fd92e034bed2121e1f7f9f23204204e1a68a8b7dd52a167593d7c0438
7
- data.tar.gz: b0ca4ff6e4221e0213782cf7330e2514bfe5adb3c8a137362da708f2948f424e5e7e81b0f83f0dae9782917fce8dfb71eef07340a97a6a47e819ca8834b6bd7d
6
+ metadata.gz: cec3705d7c5049d5a8108743905f8bc44b4441509ab1603a00356194b7035ca5bfea2e0e07e72d0daa3776be64e6d553ad3ef56facadfde3fc40ac446483f0f5
7
+ data.tar.gz: d03479ab02b272b25c26b54f4a840ef572ec91aff4123f4b7aec5057edbbf0b37568b6ab355ff7fa3df241618845f43fa658eb31d4d3c801c35b43b242e4b1ab
@@ -1,6 +1,6 @@
1
1
  module ApiException
2
2
  # first number stable version
3
3
  # second number major release
4
- # bug fixes
5
- VERSION = "1.1.0"
4
+ # bug fixes or minor release
5
+ VERSION = "1.1.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_exception
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - killjoy
@@ -35,17 +35,8 @@ files:
35
35
  - MIT-LICENSE
36
36
  - README.md
37
37
  - Rakefile
38
- - app/assets/config/api_exception_manifest.js
39
- - app/assets/stylesheets/api_exception/application.css
40
- - app/controllers/api_exception/application_controller.rb
41
- - app/helpers/api_exception/application_helper.rb
42
- - app/jobs/api_exception/application_job.rb
43
- - app/mailers/api_exception/application_mailer.rb
44
- - app/models/api_exception/application_record.rb
45
- - app/views/layouts/api_exception/application.html.erb
46
38
  - config/locales/en/en.yml
47
39
  - config/locales/es/es.yml
48
- - config/routes.rb
49
40
  - lib/api_exception.rb
50
41
  - lib/api_exception/base_exception.rb
51
42
  - lib/api_exception/controller_exception.rb
@@ -53,7 +44,6 @@ files:
53
44
  - lib/api_exception/file_exception.rb
54
45
  - lib/api_exception/model_exception.rb
55
46
  - lib/api_exception/version.rb
56
- - lib/tasks/api_exception_tasks.rake
57
47
  homepage: https://gitlab.com/code-nest2/api_exception
58
48
  licenses:
59
49
  - MIT
@@ -69,7 +59,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
59
  requirements:
70
60
  - - ">="
71
61
  - !ruby/object:Gem::Version
72
- version: '0'
62
+ version: 3.3.0
73
63
  required_rubygems_version: !ruby/object:Gem::Requirement
74
64
  requirements:
75
65
  - - ">="
@@ -1 +0,0 @@
1
- //= link_directory ../stylesheets/api_exception .css
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module ApiException
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module ApiException
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module ApiException
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module ApiException
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: "from@example.com"
4
- layout "mailer"
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module ApiException
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Api exception</title>
5
- <%= csrf_meta_tags %>
6
- <%= csp_meta_tag %>
7
-
8
- <%= yield :head %>
9
-
10
- <%= stylesheet_link_tag "api_exception/application", media: "all" %>
11
- </head>
12
- <body>
13
-
14
- <%= yield %>
15
-
16
- </body>
17
- </html>
data/config/routes.rb DELETED
@@ -1,2 +0,0 @@
1
- ApiException::Engine.routes.draw do
2
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :api_exception do
3
- # # Task goes here
4
- # end