Skip to content

Instantly share code, notes, and snippets.

require 'spec_helper'
describe Assignment do
describe "#percentage" do
specify do
assignment = Assignment.new(score: 5, total: 10)
expect(assignment.percentage).to eq(50)
end
end
@rockwood
rockwood / RailsResourceCollectionExtension.coffee
Last active August 29, 2015 14:01
RailsResourceCollectionExtension
angular.module("rails").factory "RailsResourceCollection", (_) ->
class RailsResourceCollection
constructor: (models=[]) ->
@models = models
angular.module("rails").factory "RailsResourceCollectionMixin", (RailsResourceCollection) ->
RailsResourceCollectionMixin = ->
RailsResourceCollectionMixin.extended = (Resource) ->
Resource.intercept "afterResponse", (result, resource, context) ->
@rockwood
rockwood / data
Last active August 29, 2015 14:17
Heroku new pg:backups data script
#!/bin/bash
set -x
set -e
DATABASE='YOUR_DEV_DATABASE'
HEROKU_APP='YOUR_HEROKU_APP'
dropdb ${DATABASE}
@rockwood
rockwood / gist:ea59c05b2378f5e73bb9
Created April 1, 2015 16:09
RSpec 3 Async Helpers
# Taken from https://gist.github.com/mattwynne/1228927
#
# usage:
# it "should return a result of 5" do
# eventually { long_running_thing.result.should eq(5) }
# end
#
module AsyncHelpers
def eventually(options = {})
timeout = options[:timeout] || 2
class TestServer
def initialize(options)
@server_port = options.fetch(:server_port)
@client_port = options.fetch(:client_port)
end
def start
@pid = spawn(command)
end
@rockwood
rockwood / gist:1562615
Created January 4, 2012 22:43
Everyauth findUserById
var UserSchema = new Schema({
email : String,
hashed_password : String,
first_name : String,
last_name : String,
salt : String,
auth_method : String,
signupDate : { type: Date, default: Date.now }
});
@rockwood
rockwood / app.js
Created February 10, 2012 20:29
Flatiron view loader
var flatiron = require('flatiron'),
path = require('path'),
plates = require('plates'),
app = flatiron.app;
app.config.file({ file: path.join(__dirname, 'config', 'config.json') });
app.use(flatiron.plugins.http);
app.use(require("./plugins/load"));

Ranger Keybindings

Search for a File / Directory

Key Binding Description
f search for file / directory

Copy, Rename/Move or Delete

@rockwood
rockwood / rps.ex
Created January 17, 2018 12:28
Rock Paper Scissors
defmodule Rps do
def run(input) do
player1 = String.split(input, "")
player2 = Enum.shuffle(["r", "p", "s"])
result =
[player1, player2]
|> Enum.zip()
|> Enum.map(&result/1)
|> Enum.sum()
|> case do
@rockwood
rockwood / Readme.md
Last active May 4, 2018 15:55
Seoul Elixir Meetup

1. Install Phoenix 1.3

mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez

2. Create a new Phoenix project

mix phx.new demo

3. Create the database