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
| module Rack | |
| module Test | |
| module Session | |
| attr_reader :last_response | |
| attr_reader :last_request | |
| alias_method :response, :last_response | |
| alias_method :request, :last_request | |
| def initialize(app) |
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
| #!/bin/sh | |
| # Best To-Do List. Ever. | |
| # | |
| # Usage: | |
| # 1. Add a new item to list: `todo This needs to be fixed` | |
| # 2. Edit the to-do list: `todo -e` | |
| # 3. Show the current to-do's: `todo` | |
| if [[ $1 ]]; then | |
| if [ $1 = "-e" ]; then |
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
| namespace :ci do | |
| task :copy_yml do | |
| sh "cp #{Rails.root}/config/example_database.yml #{Rails.root}/config/database.yml" | |
| end | |
| desc "Prepare for CI and run entire test suite" | |
| task :build do | |
| ENV["RACK_ENV"] = "test" | |
| Rake::Task['db:migrate'].invoke | |
| Rake::Task['db:test:prepare'].invoke |
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
| #!/usr/bin/env escript | |
| %% -*- erlang -*- | |
| -include_lib("kernel/include/file.hrl"). | |
| -compile(export_all). | |
| -define(LOG(S), io:format(S)). | |
| -define(LOG(S,A), io:format(S,A)). | |
| main(Dirs) -> | |
| CodePath = case os:getenv("RIAK_LIB") of |
OlderNewer