Ruby on Rails tutorial: Getting started with Contentful

In this Ruby-on-Rails tutorial, you can follow step-by-step the process of building a demo job listing application that relies on Contentful for its data.
Published
September 8, 2022
Category

Guides

Ruby on Rails, often shortened to Rails, is a Ruby-based Model-View-Controller (MVC) framework for building production-ready web applications and services. Rails provides several out-of-the-box features, such as database migrations and ActiveRecord (ORM), to assist developers as they build applications in minimal time. 

Rails shares several similarities with Django, a Python web development framework. However, unlike Django, Rails allows developers to build the controller-specific logic of their application. They also share the convention-over-configuration philosophy and provide standard practices for developers to follow.

Developers building applications with Rails will benefit from leveraging the existing functionalities of gems created by members of the Rails community. For an improved developer experience, Contentful provides several gems that make interacting with its API easier.

To demonstrate how Contentful integrates with Rails, this article will guide you through the process of building a demo job listing application that relies on Contentful for its data.

Prerequisites 

To follow this tutorial, it's recommended that you have:

  • A Contentful account and access to Contentful UI. If you do not have one, create a free account with a free 60-day trial subscription.

  • The Ruby compiler and Ruby on Rails framework installed on your computer.

  • A basic familiarity with the Ruby programming language.

Preparing Contentful resources 

The purpose of our job listing application is to display open job roles to job seekers. Each job listing contains several details, including the job title, description, location, and salary. To structure the data, we need to define these details on Contentful within a content model.

Using the Contentful UI, create a content model that models the fields within a job post. Each job post will be created as a data entry using this content model. For this tutorial, you will use the default Space created for every Contentful account.  

Creating a Contentful content model

Once you’re logged into Contentful, click the Content Model item within the top navigation bar to navigate to the Content Editor page. 

In the Create new content type model box, use “jobs” as the content model name, then provide your preferred description.

Create New Content Type

After saving the content model, use the + Add fields button to add the following fields:

  • A short text field type named title to store the job role within the job ad,

  • A rich text field type named description to describe the job being posted,

  • A short text field type named salary to store a salary range for the job role,

  • A short text field type named location to store the office address,

  • A boolean field type named remote to indicate whether the job is remote, and

  • A media field type named image to store a thumbnail of the job role.

Click the Save button to save the fields you have added to the content model.

With the content model saved, the next step is to add your first entry.  

Content Model Ruby on Rails

Adding data into the content model

Data entries for your defined content models are managed through the Content page on Contentful. For the jobs content model, we want to add some data entries to populate the Rails application.  

Navigate to the Content page and create two entries in the jobs content model. Feel free to copy job details from the Contentful career page or use your preferred details.

Content Type Jobs

Retrieving Contentful API credentials

Contentful provides the Content Delivery API (CDA) for developers to retrieve data stored within a Contentful space. To access the API, provide the access token associated with your Contentful space for authentication. Tokens for a Contentful space are managed on the Settings page within the Contentful UI.

Click the Settings item within the navigation bar to reveal a dropdown, then click API Keys to view all API keys for your Contentful space.

API Keys

On the next page, click the Add API Key button on the right-hand side to create the first access token for the space. 

Leave all fields within the API Key at their default values and record the Space ID and Content Delivery API - access token values in a secure text editor. In the following section, you’ll use these values while building the frontend of the Ruby project.

Contentful API

At this point, you have created a content model and obtained your Space ID alongside the associated access token. Let’s now build the Rails application to retrieve and display the two entries within the jobs content model.

Building the Ruby on Rails application

Within this tutorial, you will use Contentful as a View Helper to retrieve entries from your Contentful Space. 

To begin, execute the two commands below to ensure you have Ruby and Rails installed on your computer. 

If you do not have Rails installed, you could either install it following the gem command below or walk through the GoRails installation guide to install Rails for your OS:

Ruby Code

Next, generate a new application using the Rails CLI with the command below. The --css flag will instruct the Rails installer to use TailwindCSS for styling the application layouts.

This command will create several files and folders that make up the Rails application. You will do the most work within this app directory. The File/folder section of the Rails documentation explains the purpose of each file and directory. 

Move into the generated Rails project directory and use bundle to install the two gems below. You’ll use these while building the application.

  • The Contentful gem for wrapping the Content Delivery and Preview APIs from Contentful. You’ll use the gem to access your content entries within Contentful from the Rails app. 

  • The Rich_text_renderer gem for displaying the description Rich Text within the jobs content model. 

Using your preferred code editor, open the contentful-job-ads project to create and modify existing files in the next section.

Defining the application route

The Rails application is intended to display a list of all available jobs on the default page immediately after the opening application. To achieve this design,  change the default route within the application from the Rails welcome page to a custom page. 

Open the routes.rb file within the config directory and add the path below, which matches the jobs function within the root controller.  

Next, use the Rails CLI to generate a controller named root for the path you defined above:

Creating a service object

Service objects are Plain Old Ruby Objects (PORO) created for specific functions. These are where developers keep specific business logic to avoid clogging up a controller with unrelated code.

By default, services aren’t included when you generate a Rails application. Create your first service manually with the following steps:

  1. Create a services directory within the contentful-job-ads/app folder. 

  2. Create a job_service.rb file and add the code below to build the JobService class.

The JobService class below contains a constructor method that instantiates the Contentful client and stores the instance in a variable. You’ll use the contentful_jobs method to retrieve all entries within the jobs content model, then use the rich_renderer method to render the rich text for the job description. 

Replace the CONTENT_SPACE_ACCESS_TOKEN and CONTENTFUL_SPACE_ID placeholders with the access token and space ID credentials you previously obtained from the Contentful UI. Optionally, you can access these credentials using environment variables to ensure they’re not leaked when the application code enters a public code repository like GitHub. 

Next, open the contentful-job-ads/config/application.rb file and add the code below into the Application class to load the custom services directory.

Creating application view

Create a jobs method within the root controller to instantiate the additional JobsService class. The root controller resides in the app/controllers/root_controller.rb file.  

Then, create a jobs.html.erb file within the app/views/root folder for the Rails application to render as its default page. 

Add the code below to the jobs.html.erb file: 

To confirm that the application is working, you will start the Rails server to view the application you have built so far. 

Launch a separate terminal window and execute the watch command below to generate the TailwindCSS classes used in the jobs.html.erb file

Next, in your existing terminal window, run the command below to start the rails server: 

Note: Alternatively, you can install Foreman on your computer and execute the ./bin/dev command to simultaneously generate the TailwindCSS classes and also run the Rails server in a single terminal. 

Using your web browser, navigate to the index page of the running Rails application at localhost:3000. You will see the following:

Work With Us At Contentful

Further functionality

Rails provides other features to extend the basic functionality of the job listing application that we’ve built. 

One notable Rails feature is Active Record, which allows developers to design the model layer of an application. Contentful’s contentful_model gem allows you to associate your Rails models with content models.

Conclusion

Congratulations on building a job listing application that retrieves and displays job entries from a Contentful Space! To build the application, you successfully followed the Contentful as a View Helper approach by creating the Contentful client within a Service Object.

Are you interested in building a related project using Contentful? Create a free Contentful account and begin designing your content model!

Start building

Use your favorite tech stack, language, and framework of your choice.

About the author

Don't miss the latest

Get updates in your inbox
Discover new insights from the Contentful developer community each month.
add-circle arrow-right remove style-two-pin-marker subtract-circle remove