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
| # Set up Ruby and Gemset using RVM | |
| rvm get latest | |
| rvm install 1.8.7 | |
| rvm install 1.9.2-head | |
| rvm --create 1.8.7@rails2tutorial | |
| rvm --create use 1.9.2-head@rails3tutorial | |
| rvm --default use 1.9.2-head@rails3tutorial | |
| gem update --system | |
| # Install rails |
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
| .bundle | |
| db/*.sqlite3 | |
| log/*.log | |
| *.log | |
| tmp/**/* | |
| tmp/* | |
| doc/api | |
| doc/app | |
| *.swp | |
| *~ |
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
| me@mymac:/usr/local [git:master] | |
| ➔ brew install lua | |
| ==> Downloading http://www.lua.org/ftp/lua-5.1.4.tar.gz | |
| File already downloaded and cached to /Users/eechris/Library/Caches/Homebrew | |
| ######################################################################## 100.0% | |
| patching file lcode.c | |
| patching file ldblib.c | |
| patching file liolib.c | |
| patching file llex.c | |
| patching file loadlib.c |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>HTML 5 complete</title> | |
| <!--[if IE]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| <style> | |
| article, aside, dialog, figure, footer, header, |
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 id="post-id" class="entry"> | |
| <h1>Entry Title</h2> | |
| <p>The blog entry.</p> | |
| <p> ... </p> | |
| <div class="byline"> | |
| <em>Posted by</em>: | |
| <span class="posted-by">Author</span> date | |
| </div> | |
| </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
| <?xml version="1.0" encoding="utf-8"?> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
| "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
| <head> | |
| <title>An XHTML 1.1 standard template</title> | |
| <meta http-equiv="content-type" | |
| content="text/html;charset=utf-8" /> | |
| <meta http-equiv="Content-Style-Type" content="text/css" /> |
NewerOlder