This file contains hidden or 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
| !!!strict | |
| %html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us") | |
| %head> | |
| %meta(http-equiv="content-type" content="text/html; charset=utf-8") | |
| %title=page.title | |
| %meta(name="author" content="Robert W Boyer") | |
| %link(rel="stylesheet" href="/css/syntax.css" type="text/css") |
This file contains hidden or 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
| class MaybeRuby | |
| def ruby? | |
| return :true | |
| end | |
| end |
This file contains hidden or 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
| gem install jekyll |
This file contains hidden or 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
| .myclass | |
| %p.reallycooltype | |
| Some plain old text | |
| {% liquid tag %} | |
| %randomtag | |
| Some more plain old text or liquid tag which is treated like plain old text |
This file contains hidden or 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
| <div class="myclass"> | |
| <p class="reallycooltype"> | |
| Some plain old text | |
| {% liquid tag %} | |
| <randomtag> | |
| </randomtag> | |
| </p> | |
| </div> |
This file contains hidden or 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
| GEM | |
| remote: http://rubygems.org/ | |
| specs: | |
| activemodel (3.1.3) | |
| activesupport (= 3.1.3) | |
| builder (~> 3.0.0) | |
| i18n (~> 0.6) | |
| activerecord (3.1.3) | |
| activemodel (= 3.1.3) | |
| activesupport (= 3.1.3) |
This file contains hidden or 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
| require 'lib/model/product' | |
| class CreateProducts < ActiveRecord::Migration | |
| def self.up | |
| create_table :products do |t| | |
| t.string :pnumber, :null => false | |
| t.string :image, :null => false | |
| t.string :name, :null => false | |
| t.decimal :price, :null => false #, :precision => 8, :scale => 2 | |
| t.string :description, :null => false |
This file contains hidden or 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
| D, [2012-01-15T16:18:00.862824 #2] DEBUG -- : NoMethodError: undefined method `values' for #<PGresult:0x0000000287c8a8>: SHOW client_min_messages | |
| D, [2012-01-15T16:18:00.864452 #2] DEBUG -- : PGError: ERROR: invalid value for parameter "client_min_messages": "" | |
| : SET client_min_messages TO '' |
This file contains hidden or 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
| terminfo(5) File Formats terminfo(5) | |
| NNAAMMEE | |
| terminfo - terminal capability database | |
| SSYYNNOOPPSSIISS | |
| /usr/share/misc/terminfo/*/* |
This file contains hidden or 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{ | |
| //@include push(4); | |
| @include column(12,collapse); | |
| background-color: rgba(255,255,255, 0.6); | |
| position: fixed; | |
| z-index: 999; | |
| h1, h2, h3, h4, h5, h6{ | |
| display: inline; | |
| } | |
| h1{ |
OlderNewer