Like this article? We recommend
Installing Konacha
Installing Konacha
To get started, we must first create a new Rails application. This will create a new Rails application for us:
> rails new omgjs
Now, in the Gemfile of that application, add the following:
# Gemfile group :development, :test do gem 'konacha' end
With that structure in place, we just need to run bundle install to install the Konacha gem, and we should be good to go.