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
#!/usr/bin/env bash | |
# This is an RVM Project .rvmrc file, used to automatically load the ruby | |
# development environment upon cd'ing into the directory | |
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional, | |
# Only full ruby name is supported here, for short names use: | |
# echo "rvm use 1.8.7" > .rvmrc | |
environment_id="ruby-1.8.7-p249@aclfix" |
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 Integer | |
def ordinal | |
cardinal = self.abs | |
digit = cardinal%10 | |
if (1..3).include?(digit) and not (11..13).include?(cardinal%100) | |
self.to_s << %w{st nd rd}[digit-1] | |
else | |
self.to_s << 'th' | |
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
#!/usr/bin/env ruby | |
# Copyright (c) 2011 Tim van der Horst. Licensed under the MIT License: | |
# http://www.opensource.org/licenses/mit-license.php | |
# UglifyJS: | |
# https://github.com/mishoo/UglifyJS | |
require "rubygems" | |
require "optparse" | |
require "date" |
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
-- The CXX compiler identification is Clang 5.0.0 | |
-- The C compiler identification is Clang 5.0.0 | |
-- Check for working CXX compiler: /usr/local/Library/ENV/4.3/clang++ | |
-- Check for working CXX compiler: /usr/local/Library/ENV/4.3/clang++ -- works | |
-- Detecting CXX compiler ABI info | |
-- Detecting CXX compiler ABI info - done | |
-- Check for working C compiler: /usr/local/Library/ENV/4.3/clang | |
-- Check for working C compiler: /usr/local/Library/ENV/4.3/clang -- works | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done |
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
import React, { PropTypes } from 'react'; | |
import { Provider } from 'react-redux'; // Or something else, if you're not using Redux | |
import Router from 'react-router/lib/Router'; | |
const Root = ({ store, history, routes }) => ( | |
<Provider store={store} key="provider"> | |
<Router history={history} routes={routes} /> | |
</Provider> | |
); |
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
/node_modules/ | |
/output/ |
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
declare module '@sentry/cli' { | |
interface UploadSourceMapsOptions { | |
include: string[] | |
ignore?: string[] | |
ignoreFile?: string | |
rewrite?: boolean | |
sourceMapReference?: boolean | |
stripPrefix?: string[] | |
stripCommonPrefix?: boolean | |
validate?: boolean |