I've installed Jekyll and I'm trying to import a simple CSV file with a few posts. I've never used Ruby before. In Jekyll's import docs it shows the following code that needs to be run via Command Line.
http://import.jekyllrb.com/docs/csv/
$ ruby -rubygems -e 'require "jekyll-import";
JekyllImport::Importers::CSV.run({
"file" => "my_posts.csv"
})'
I'm I supposed to type the whole thing into Command Line and run it or is the first line supposed to call a function that includes the last three lines of code?
Sorry for the noob question but I really couldn't find any answers to this.
Thanks