JKJohn Kevin Baluyotinwebology.hashnode.dev路Jul 6, 2022 路 3 min readGoogle Login Rails 7 tutorialIn this tutorial, I'll implement google login in rails 7 using omniauth in devise gem. Take note, in this tutorial I'll be using login-demo as code base which is tackled in this tutorial. It's best to look at it before proceeding on this one. I'll ...00
JKJohn Kevin Baluyotinwebology.hashnode.dev路May 9, 2022 路 3 min readCreate Login in Ruby on RailsWant a simple login for your rails app? I'll cover that in this tutorial. We will require the user to login in order to gain access to certain pages. Take note that this is a simple login, user roles and authentication won't be covered in this post. ...00
JKJohn Kevin Baluyotinwebology.hashnode.dev路Apr 14, 2022 路 2 min readFoundation + Rails 7 tutorialRails 7 is relatively new, so I can't see much documentation for it right now. Especially in using foundation as CSS framework in Rails 7. In this tutorial, I'll show you how I managed to make Foundation work. We won't be using foundation-rails gem, ...01
JKJohn Kevin Baluyotinwebology.hashnode.dev路Mar 5, 2022 路 4 min readCreate Seamless Loading in Ruby on RailsDo you want your rails app to automatically load the next page when scrolled to the bottom? That's what we're covering in this post. We will create a rails app like Pinterest in Rails 6. Create the Image scaffold. $ rails g scaffold Image url:string...00
JKJohn Kevin Baluyotinwebology.hashnode.dev路Jan 30, 2022 路 4 min readRuby on Rails - Comment real-time loadingThe goal of this post was to create a real-time loading of comments on ruby on rails. Like in this demonstration: Take note: This is a continuation of my previous blog post here: Create Post and Comment in Ruby on Rails. I highly suggest that yo...00