This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/> | |
</header> | |
<div class = "pageOne" id="p1"> | |
<ul class ="nav nav-pills"> | |
<li> | |
<a href="#p1">Cesar Anzures</a> | |
</li> | |
<li class ="pull-right"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[4] pry(#<Post>):1> nesting | |
Nesting status: | |
-- | |
0. main (Pry top level) | |
1. #<Post> | |
[5] pry(#<Post>):1> self.to_s | |
=> "#<Post:0x007fdf5f0360b0>" | |
[6] pry(#<Post>):1> self.title = 'some new title' | |
=> "some new title" | |
[7] pry(#<Post>):1> self.body = 'some new body' |