token_authenticate_me 0.11.1 → 0.11.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 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 9a4e95cdb3c914bd08c1ce719f8225e95e37b0be
         | 
| 4 | 
            +
              data.tar.gz: '0004857a7c842b4dc656b8e84d48176913702758'
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: d28b84c9a1d9d9ab8e77a9bc8b6a56f06ba5bdd9822f7d0379cadeac604a7c01ea6ab5577c78d7cf4af71c3f941342965669cf841e76fb2893633f92df779dd1
         | 
| 7 | 
            +
              data.tar.gz: 03aacfdc6e710e0d839b71d9a18726ff3c5a1ce12a45ec798a9838560b4b9c227214584ddf783e409853bd94218d0f79a78b5477aef581e47c819f02e583876d
         | 
    
        data/README.md
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            TokenAuthenticateMe
         | 
| 2 2 | 
             
            =====================
         | 
| 3 3 |  | 
| 4 | 
            -
            This gem adds simple API based token authentication. We at [ | 
| 4 | 
            +
            This gem adds simple API based token authentication. We at [Wildland](https://wild.land/) wanted to be able to handle our entire authentication process -- including account creation and logging in -- through a RESTful API over JSON using token authentication, and found that solutions like Devise required too much hand holding due to its complexity to ultimately get the functionality that we wanted. Unfortunately we were unable to find a satisfactory existing solution -- though I'm sure one does exist, this isn't a new problem -- so we set out to create our own. After using internally on one project, we decided to roll it out into a gem to use on another.
         | 
| 5 5 |  | 
| 6 6 | 
             
            ## Compatibility
         | 
| 7 7 | 
             
            For rails < 5.x use v0.10.x
         | 
| 
            File without changes
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: token_authenticate_me
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.11. | 
| 4 | 
            +
              version: 0.11.2
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Sam Clopton
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date:  | 
| 12 | 
            +
            date: 2019-03-21 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: rails
         | 
| @@ -153,6 +153,7 @@ files: | |
| 153 153 | 
             
            - test/dummy/config/locales/en.yml
         | 
| 154 154 | 
             
            - test/dummy/config/routes.rb
         | 
| 155 155 | 
             
            - test/dummy/config/secrets.yml
         | 
| 156 | 
            +
            - test/dummy/log/test.log
         | 
| 156 157 | 
             
            - test/dummy/public/404.html
         | 
| 157 158 | 
             
            - test/dummy/public/422.html
         | 
| 158 159 | 
             
            - test/dummy/public/500.html
         | 
| @@ -219,6 +220,7 @@ test_files: | |
| 219 220 | 
             
            - test/dummy/config/routes.rb
         | 
| 220 221 | 
             
            - test/dummy/config/secrets.yml
         | 
| 221 222 | 
             
            - test/dummy/config.ru
         | 
| 223 | 
            +
            - test/dummy/log/test.log
         | 
| 222 224 | 
             
            - test/dummy/public/404.html
         | 
| 223 225 | 
             
            - test/dummy/public/422.html
         | 
| 224 226 | 
             
            - test/dummy/public/500.html
         |