Skip to content

Instantly share code, notes, and snippets.

View rr1000's full-sized avatar
🦾
Keep moving forward.

Ryan Rich rr1000

🦾
Keep moving forward.
View GitHub Profile
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville' rel='stylesheet' type='text/css'>
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
$font-text: "Helvetica Neue", Helvetica, Arial, sans-serif;
<div class="grid grid-pad"> <!-- max-width 960px -->
<div class="col-1-4">
Content Here
</div>
<div class="col-1-4">
Content Here
</div>
<div class="col-1-4">
Content Here
</div>
<div class="container"></div> <!-- 960px Helper -->
<header id="header">
<nav>
<ul>
<li><a href="#">Example</a></li>
</ul>
</nav>
</header>
def something_todo
is "/"
end
@rr1000
rr1000 / gist:45530762b21a06a3493f
Created June 23, 2014 17:56
Testing This Ruby
version = ARGV.pop
if version.nil?
puts "Usage: ruby install.rb version"
exit(64)
end
%w( activesupport activemodel activerecord actionpack actionview actionmailer railties ).each do |framework|
puts "Installing #{framework}..."
`cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-ri --no-rdoc && rm #{framework}-#{version}.gem`
@rr1000
rr1000 / gist:513c7871ae0665e7f1ad
Created June 23, 2014 17:58
Testing This Ruby
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>#</title>
<meta name="description" content="#">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="#">
</head>
<html></html>