 
      
    | You are here | hibbard.eu | ||
| | | | | citizen428.net | |
| | | | | If you often create new Rails apps, application templates can be a real timesaver. They have a very simple API, which allows developers to make changes to the Gemfile, execute Rails or Git commands, manage files and more. Heres a simple template I use to generate a new Rails app with Devise already set up: gem 'devise' after_bundle do rails_command 'generate devise:install' rails_command 'generate devise User' end The first line adds Devise to the Gemfile and the after_bundle hook runs two generators pro... | |
| | | | | www.adamalbrecht.com | |
| | | | | UPDATE: There have been some changes in the JWT Gem that make some of the below not work exactly right (it'll still be about 90% the same). Specifically, they added expiration support. See my post on the same topic, but using React.js. The server side code in this post will work just as well with Angular. | |
| | | | | janko.io | |
| | | | | In this tutorial, we'll show how to add fully functional authentication and account management functionality into a Rails app, using the Rodauth authentication framework. Rodauth has many advantages over the mainstream alternatives such as Devise, Sorcery, Clearance, and Authlogic, see my previous article for an introduction. | |
| | | | | hibbard.eu | |
| | | Learn how to set up authentication (verifying who you are) and authorization (what you may do) in a Rails app with Devise and Cancancan. | ||