revise_auth-jets 0.2.3 → 0.2.5

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: 1b069585ad21303726aef0e5964a9538d130e5c52eac85366871e13c5cc78d63
4
- data.tar.gz: 6324400ea57e45a33d220ae424d67338c2c08ece8a5a8db8885990ddf82c068d
3
+ metadata.gz: c6227cbb54b0253065b69a653c7303d0facaecfead734d096e115dbfd265723a
4
+ data.tar.gz: b380ea36c938fddb60bec59749ee1cd83f49dea5ef7125f73d079a359b55525a
5
5
  SHA512:
6
- metadata.gz: 79e1afdd902592fa4eac9c0e6f000e7c7dbc87b429e03d62f1b1f96b62403a2034c43689a66d52bcf26b966fe53ab357dcaca347ddece9e4d7f94e3c16b1d187
7
- data.tar.gz: d027b141220ebc664dc21ac8a5e82d3861d2bf47b17cba4a4c7cdb0a2e10d8f092a73d945bf269137f36a423e9c6ce8bdb89a0f0f9943fcf0310f4e5a7312bdb
6
+ metadata.gz: cec91fa6a28b8ccc457318b211574673b2b1782c52066386939e42665926d7e3505db1f29e1967e789b552acc4205ba36ef7ea69dbb6cec5ebcc01ba081488f3
7
+ data.tar.gz: ca581e3d7cae6e3acfbbd98f518dc8b18d521b78b6a7c0b40c418fad4509f833f903425467e9a6879b4bf5992fccb8e8670d74e03ada484d291772355d6f2816
data/README.md CHANGED
@@ -12,9 +12,9 @@ bundle add "revise_auth"
12
12
 
13
13
  And then execute the following to generate a `User` model (optionally adding other fields such as `first_name` and `last_name`):
14
14
  ```bash
15
- $ jetsg revise_auth:model User first_name last_name
15
+ $ jets g revise_auth:model User first_name last_name
16
16
  $ jets db:migrate
17
- $ jetsg revise_auth:views
17
+ $ jets g revise_auth:views
18
18
  ```
19
19
 
20
20
  ## Usage
@@ -1,4 +1,4 @@
1
- require 'revise_auth'
1
+ require 'revise_auth-jets'
2
2
  class ReviseAuthController < ApplicationController
3
3
  # Return true if it's a revise_auth_controller. false to all controllers unless
4
4
  # the controllers defined inside revise_auth. Useful if you want to apply a before
@@ -23,7 +23,7 @@ module ReviseAuth
23
23
  end
24
24
 
25
25
  def add_revise_auth_model
26
- prepend_to_file model_path, "require 'revise_auth'\n"
26
+ prepend_to_file model_path, "require 'revise_auth-jets'\n"
27
27
  inject_into_class model_path, class_name, " include ReviseAuth::Model\n"
28
28
  end
29
29
 
@@ -1,3 +1,3 @@
1
1
  module ReviseAuth
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: revise_auth-jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremiah Parrack