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
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": true, |
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
source 'https://code.stripe.com' | |
source 'https://rubygems.org' | |
# core | |
gem 'rails' , '~> 4.1.2' | |
gem 'sass-rails' , '~> 4.0.1' | |
gem 'bootstrap-sass' | |
gem 'coffee-rails' , '~> 4.0.1' | |
gem 'haml-rails' , '~> 0.4' | |
gem 'jquery-rails' , '~> 3.1.1' |
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
Show hidden characters
{ | |
"folders": | |
[ | |
{ | |
"file_exclude_patterns": | |
[ | |
"*.sublime-workspace", | |
"*.sublime-project", | |
".gitmodules", | |
".jshintrc" |
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
source 'https://rubygems.org/' | |
gem 'guard' | |
gem 'guard-sass', git: '[email protected]:alexdunae/guard-sass.git' | |
gem 'autoprefixer-rails' |
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
[client] | |
user=root | |
password= | |
[mysql] | |
user=root | |
password= | |
[mysqldump] | |
user=root |
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
check file nginx.pid with path /var/run/nginx.pid | |
if changed timestamp then exec "/usr/local/bin/monit2twilio" as uid root and gid root |
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
// heavily inspired https://github.com/alphagov/static/blob/master/app/assets/javascripts/search.js.erb | |
$.extend($.ui.autocomplete.prototype, { | |
_renderMenu: function( ul, items ) { | |
var that = this, | |
currentCategory = ""; | |
$.each( items, function( index, item ) { | |
if ( item.category && item.category != currentCategory ) { | |
ul.append( "<li class='ui-autocomplete-category'><span>" + item.category + "</span></li>" ); | |
currentCategory = item.category; | |
} |
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
source 'https://rubygems.org/' | |
gem 'guard' | |
gem 'guard-jammit' | |
gem 'guard-sass' | |
gem 'guard-coffeescript' |