Posts

Showing posts from September, 2019

Phone Number Verification By SMS or Voice Method By Using Authy Verification API In Ruby On Rails

Image
What is Authy Verification API? Authy is a more complete authentication API and best for an ongoing relationship with a customer. Authy provides SMS and voice time-based one-time password(OTP). Its primary use is two-factor Authentication(2FA). It supports OTP send via voice and SMS. Purpose of phone number verification 1) Phone number verification is the process of verifying a phone number is valid, reachable and accessible by the user. 2) Phone number verification is used as a form of two-factor authentication. 3) Phone verification can be done by SMS or by voice. Things needed before starting 1) Twilio account by visiting  https://www.twilio.com/try-twilio 2) Authy app which you can create in Twilio console from where you will need an API key. 3) Ruby version: 2.5.1 and rails version: 5.2.3 Getting started 1) Create a new application in rails:  rails new application_name 2)  cd application_name  is used to go to a particular file....

Bootstrap Classes Which Are Mostly Used In Rails Applications(VERSION 4.3.1)

Bootstrap is nothing but free front-end framework which is used for faster and easier web development as well as easily creates responsive designs. There are some most important advantages of bootstrap like-Easy to use responsive  features, browser   compatibility we can start installation in rails application with the help of the following command. $  gem install bootstrap -v 4.3.1 After the installation of bootstrap, we can directly use   bootstrap classes in our rails application or we can use CDN as well in the application which is given below. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"/> List of bootstrap classes are mostly used in rails application are listed below- container-fluid : This is the main/parent class which is used to declaring the whole HTML page content inside the container-fluid class, It will affect the whole screen and takes full width of the viewport and continuou...

Advantages Of Web Development With Ruby On Rails

Ruby On Rails   is a full-stack (all parts needed for a web application), open-source web framework. It  allows you to  write  efficient  code by favoring convention over configuration. It was created in 2003 by David Heinemeier Hansson and since extended by Rails Core Team. It  operates on all major operating systems like LINUX, OS X, and Windows and supports most common open-source Databases like MySQL and Postgre SQL, SQL Server, Oracle, and others. It uses any Web Server that supports CGI, the most popular being Apache and Lighttpd. The entire framework is written in Ruby, a language whose popularity has shot up ever since rails came into the picture. Why RoR? Because of ROR, programming appears now like a simple task. Powerful web applications that have formerly taken weeks or months to develop can be produced in a matter of days  by RoR . There is no doubt that web frameworks have exploded in popularity over the  last  few ...