Web Technology Guide By Gurudath BN
Google Recaptcha With Ruby On Rails Integration.
Google Recaptcha protects the websites you love from spam and abuse.
Below the steps to be followed to develop a sample ROR application with Google Recaptcha:-
Step 1. Create a Ruby on Rails application:-
a)Open a terminal, navigate to a directory where you have rights to create application and type:
rails new recap
b)After you create the application, switch to its folder:
cd recap
c)Type and run bundle install:
bundle install
Step 2. Create models, views, and controllers:-
a)For this application we will generate a scaffold, which is a starter template provided by Rails that bundles a model, a controller, and the relevant views for our application:
rails generate scaffold User name:string
b)After generating the scaffold we need to create the actual User table in our development database so we need to run migration:
rake db:migrate
c)To start the application run below command…
View original post 321 more words