tinytokenauth-rails 0.1.1 → 0.1.2

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: 62e5b134761c6b6009408bf044d89af8f97a343a35edb30871c98479568a0cc2
4
- data.tar.gz: 88891f8ee0df8a324869ea9e3a429f76a35bde3f073cef8aa93f51013a0203b6
3
+ metadata.gz: efd7f7d65bfafb84e0d246a0b3fae5397d715e67295f3ae3173c509fd0d54c4b
4
+ data.tar.gz: 6366ba027e4e082b87224c2afe35601eb99717338ad5d02e11707833510fd23c
5
5
  SHA512:
6
- metadata.gz: 00e6b497c92575be98be6122612cc01d61c9804d1c940c94785e3295cd77fa16902df4bb3014f92622e2ac72c5384512c24248a881d9172bd5252db5456ad5f4
7
- data.tar.gz: 5af3702edf28bd7b5115a6bbc178239ccda067ab8ff7635039c2385baee4cd28333fe144a65b86316864c94239fd43322dce4a984feb512c480a7594f3d854e4
6
+ metadata.gz: d0a63cfe149683eee55423df7a4e804291e03139cc0cb4e5a99fab66d94cd0b8669c5cd11ea2039bdc53b708bc6e008370739bed69c8da0c7f5b67a464578df4
7
+ data.tar.gz: ae96bf2cdfd72caae330dd50ffdd26cac4e0ed9de3fdadfb9acaeacff9a3ee87a9ed5f5573970cd055bdd1b16408cae80235ff75584fe7143adf7bb12355667e
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tinytokenauth
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
data/lib/tinytokenauth.rb CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  module Tinytokenauth
4
4
  require_relative "tinytokenauth/version"
5
- require_relative "tinytokenauth/engine"
5
+ require_relative "tinytokenauth/railtie"
6
+ require_relative 'tinytokenauth/configuration'
6
7
  require_relative "tinytokenauth/authorizable"
7
8
  require_relative "tinytokenauth/view_helpers"
8
9
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tinytokenauth-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kim Laplume
@@ -70,7 +70,6 @@ files:
70
70
  - lib/tinytokenauth.rb
71
71
  - lib/tinytokenauth/authorizable.rb
72
72
  - lib/tinytokenauth/configuration.rb
73
- - lib/tinytokenauth/engine.rb
74
73
  - lib/tinytokenauth/version.rb
75
74
  - lib/tinytokenauth/view_helpers.rb
76
75
  - sig/tinytokenauth/rails.rbs
@@ -1,10 +0,0 @@
1
- module Tinytokenauth
2
- class Engine < Rails::Engine
3
- # initializer "tinytokenauth-rails.view_helpers" do
4
- # ActiveSupport.on_load(:action_view) do
5
- # include ViewHelpers
6
- # end
7
- # end
8
- end
9
-
10
- end