上QQ阅读APP看书,第一时间看更新
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
class Address include Mongoid::Document field :street, type: String field :city, type: String field :state, type: String field :zipcode, type: String field :country, type: String embedded_in :author end
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
require File.expand_path('../boot', __FILE__) require "action_controller/railtie" require "action_mailer/railtie" require "sprockets/railtie"
Any command-line input or output is written as follows:
$ ruby –v
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking the Next button moves you to the next screen".