This is now an actual repo:
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
| RED="\[\033[0;31m\]" | |
| YELLOW="\[\033[0;33m\]" | |
| GREEN="\[\033[0;32m\]" | |
| BLUE="\[\033[0;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[0;37m\]" | |
| COLOR_NONE="\[\e[0m\]" |
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
| beforeEach(function(){ | |
| this.addMatchers({ | |
| toBeInstanceOf: function (expected) {return this.actual instanceof expected;} | |
| }); | |
| }); |
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
| var defaults = ["top", | |
| "window", | |
| "location", | |
| "external", | |
| "chrome", | |
| "Intl", | |
| "v8Intl", | |
| "document", | |
| "attr", | |
| "webkitNotifications", |
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.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| uglify: { | |
| options: { | |
| banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' | |
| }, | |
| build: { | |
| src: 'src/<%= pkg.name %>.js', |
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
| require 'sinatra' | |
| require 'action_mailer' | |
| class Mailer < ActionMailer::Base | |
| def contact | |
| mail( | |
| :to => "test@example.com", | |
| :from => "test@example.com", | |
| :subject => "Test") do |format| | |
| format.text |
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
| Get the latest `ruby-build` from `brew`: | |
| ```bash | |
| brew upgrade ruby-build --HEAD | |
| ``` | |
| Make sure 2.1.2 is available in the list: | |
| ```bash | |
| rbenv install --list |
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
| var fs = require('fs'), | |
| path = require('path'); | |
| function walkSync(currentDirPath, callback) { | |
| fs.readdirSync(currentDirPath).forEach(function (name) { | |
| var filePath = path.join(currentDirPath, name); | |
| var stat = fs.statSync(filePath); | |
| if (stat.isFile()) { | |
| callback(filePath, stat); | |
| } else if (stat.isDirectory()) { |
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
| { | |
| interaction(id: "#{id}") { | |
| ... | |
| } | |
| } |
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 GraphApi | |
| QueryType = GraphQL::ObjectType.define do | |
| name "Query" | |
| description "The query root of this schema" | |
| field :interaction do | |
| type InteractionType | |
| argument :id, !types.ID, "This is the ID of the interaction" | |
| argument :some_obscure_thing, "Quick explanation what this is" | |
| resolve -> (obj, args, ctx) do |
OlderNewer