token_auth 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 232244e546411d92fe37b5d62ce8dbd9102527af
4
- data.tar.gz: cabdfa4d6502fb6608fd7c330eebb7d8b1a4d209
3
+ metadata.gz: 27207ac1df988acfddf0064bb05d100092210008
4
+ data.tar.gz: 6b5421cd231b363e984f186f21f74170ae989b2f
5
5
  SHA512:
6
- metadata.gz: 4d8efdc271760d000161832ad77bcea5f010f68d4b85f07e743d6c74b1dae2d075efffebfb6e0daab815992a69ce885689dea86e1f43656e38e5526f63320de8
7
- data.tar.gz: b87481b89a919e9400ded097034c3ed145cd647adc01e7967838dff720f776df1a1177a4d01334915c237695e58a808795966932adc49f0d7d88b70f53fdf949
6
+ metadata.gz: 3c4161e8d9d3838a04e66967dcd3b4eb933fd0afa2584bfa891efec9b5cafb62600cd54f6a7d559867c3500987358d622d3f818cb0c5d7535a26b178c55d7452
7
+ data.tar.gz: dd7bf5622f258de8d9f1b6467be2a7dd7986842890ecd56855ab8e0ff68f1d5590a104ca1776f065ea9c7ee945b5bc1f2949fb191d1974ffc402bbab02a3424e
data/README.md CHANGED
@@ -175,6 +175,6 @@ bundle
175
175
  Run the unit tests and linters for this Engine:
176
176
 
177
177
  ```
178
- RAILS_ENV=test rails db:drop db:create db:migrate
178
+ RAILS_ENV=test bin/rails app:db:drop app:db:create app:db:migrate
179
179
  rake
180
180
  ```
@@ -4,7 +4,7 @@ require "openssl"
4
4
  module TokenAuth
5
5
  module Api
6
6
  # Processes inbound and outbound resources.
7
- class PayloadsController < ActionController::Base
7
+ class PayloadsController < ::TokenAuth::Api::BaseController
8
8
  include TokenAuth::Concerns::CorsSettings
9
9
 
10
10
  attr_reader :authentication_token
data/config/boot.rb ADDED
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # Engine version.
3
3
  module TokenAuth
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: token_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Carty-Fickes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-17 00:00:00.000000000 Z
11
+ date: 2017-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_model_serializers
@@ -140,16 +140,16 @@ dependencies:
140
140
  name: rubocop
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ">="
143
+ - - '='
144
144
  - !ruby/object:Gem::Version
145
- version: '0'
145
+ version: 0.47.1
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ">="
150
+ - - '='
151
151
  - !ruby/object:Gem::Version
152
- version: '0'
152
+ version: 0.47.1
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: mdl
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -205,6 +205,7 @@ files:
205
205
  - app/models/token_auth/uuid_enabled.rb
206
206
  - app/serializers/token_auth/synchronizable_resource_serializer.rb
207
207
  - app/views/token_auth/tokens/index.html.erb
208
+ - config/boot.rb
208
209
  - config/brakeman.ignore
209
210
  - config/locales/en.yml
210
211
  - config/locales/es-PE.yml
@@ -237,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
237
238
  version: '0'
238
239
  requirements: []
239
240
  rubyforge_project:
240
- rubygems_version: 2.6.10
241
+ rubygems_version: 2.6.12
241
242
  signing_key:
242
243
  specification_version: 4
243
244
  summary: Rails engine for authenticating clients anonymously.