Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created May 9, 2016 22:25
Show Gist options
  • Save jordanhudgens/2154a6ba43117b1b654fb0d3fff55258 to your computer and use it in GitHub Desktop.
Save jordanhudgens/2154a6ba43117b1b654fb0d3fff55258 to your computer and use it in GitHub Desktop.
require 'pp'
my_var = "Hey There"
my_arr = [1, 2, 3, 4, 5, 6, 7]
my_json = "{
id: 1,
title: 'Test Blog Post',
description: 'Here is the content',
url: 'http://edutechional-resty.herokuapp.com/posts/1.json'
},
{
id: 2,
title: 'Testing production SMS sending',
description: 'Content for post.',
url: 'http://edutechional-resty.herokuapp.com/posts/2.json'
}
"
class MyClass
attr_accessor :name
end
my_class = MyClass.new
my_class.name = "Jordan"
mixed_data = [false, 42, %w{fourty two}, {:now => Time.now, :class => Time.now.class, :distance => 42e42}]
p "Using p"
p "-" * 50
p my_var
p my_arr
p my_json
p my_class
p mixed_data
p "Using puts"
p "-" * 50
puts my_var
puts my_arr
puts my_json
puts my_class
puts mixed_data
p "Using pretty print"
p "-" * 50
pp my_var
pp my_arr
pp my_json
pp my_class
pp mixed_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment