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
*** LOCAL GEMS *** | |
activemodel (3.0.9) | |
activerecord (3.0.9) | |
activesupport (3.0.9) | |
acts_as_list (0.1.3) | |
arel (2.0.10) | |
builder (2.1.2) | |
bundler (1.0.15) | |
cgi_multipart_eof_fix (2.5.0) |
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
# CANONICAL ROBOTS.TXT | |
<IfModule mod_rewrite.c> | |
RewriteBase / | |
RewriteCond %{REQUEST_URI} !^/robots.txt$ [NC] | |
RewriteCond %{REQUEST_URI} robots\.txt [NC] | |
RewriteRule .* http://examplesite.com/robots.txt [R=301,L] | |
</IfModule> | |
# CANONICAL FAVICONS |
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
// when selecting text, use the following bg and fg colors | |
$selection-background: #8d7c79; | |
$selection-color: #4c3332; | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
abbr, address, cite, code, | |
del, dfn, em, img, ins, kbd, q, samp, | |
small, strong, sub, sup, var, | |
b, i, |
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
/* | |
* * JavaScript Pretty Date | |
* * Copyright (c) 2008 John Resig (jquery.com) | |
* * Licensed under the MIT license. | |
* */ | |
// Takes an ISO time and returns a string representing how | |
// long ago the date represents. |
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
source 'http://rubygems.org' | |
gem 'rails', '3.0.0.beta3' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
gem 'pg', '0.8.0' | |
gem 'inherited_resources', '1.1.2' |
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
$ cd nextbus/ | |
$ git init | |
$ vim .gitignore | |
# add files to be ignored | |
$ git add . | |
$ git commit -m 'Initial commit' | |
# setup github repo, adding collaborator(s) | |
$ git remote add origin [email protected]:neweryankee/nextbus.git | |
$ git push origin master | |
$ vim Rakefile |
NewerOlder