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
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Truly Ergonomic Keyboard</name> | |
<!-- | |
DIP switch settings: | |
1 2 3 4 5 |
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
last_response.body.should match_json({ | |
user: { | |
id: :user_id, | |
username: 'chancancode', | |
full_name: 'Godfrey Chan', | |
email: '[email protected]', | |
type: 'Administrator', | |
points: Fixnum, | |
homepage: /\Ahttps?\:\/\/.*\z/i, | |
created_at: WILDCARD_MATCHER, |
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
require 'json_expressions' | |
RSpec::Matchers.define :match_json do |expected| | |
unless JsonExpressions::Matcher === expected | |
expected = JsonExpressions::Matcher.new(expected) | |
end | |
match do |actual| | |
actual = JSON.parse(actual) if String === actual | |
expected =~ actual |
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
require 'formula' | |
class Fishfish < Formula | |
homepage 'http://ridiculousfish.com/shell' | |
url 'https://github.com/fish-shell/fish-shell.git' | |
depends_on 'autoconf' => :build | |
depends_on 'readline' | |
skip_clean 'share/doc' |
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
#!bash | |
# | |
# nanoc-completion | |
# ================ | |
# | |
# Bash completion support for nanoc | |
# | |
# | |
# Installation | |
# ------------ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script> | |
<script type="text/javascript" src="js/mustache.js"></script> | |
</head> | |
<body> | |
<div id="formWrapper"> |
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
require 'html_compressor' | |
class HtmlCompressor < Nanoc3::Filter | |
identifier :html_compressor | |
# Runs the content through htmlcompressor. | |
# | |
# This method optionally takes options to pass directly to htmlcompressor | |
# | |
# @param [String] content The content to filter |
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
# Rules: | |
compile '*' do | |
if not item.binary? | |
if item[:kind] == 'image' | |
layout 'image' | |
else if item[:kind] == 'link' | |
layout 'link' | |
else | |
layout 'item' |
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
class Item | |
def pretty_date | |
"<time class=\"timeago created-at\" datetime=\"#{Time.parse(self[:created_at]).iso8601}\">#{Date.parse(self[:created_at]).strftime('%e %B %Y')}</time>" | |
end | |
end |
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
<?php echo str_repeat(file_get_contents(__FILE__, false, null, __COMPILER_HALT_OFFSET__), 2); | |
__halt_compiler(); | |
<?php echo str_repeat(file_get_contents(__FILE__, false, null, __COMPILER_HALT_OFFSET__), 2); | |
__halt_compiler(); |