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
## Add to your Padrino Gemfile… | |
# Assets | |
gem 'sass' | |
gem 'uglifier' | |
gem 'sinatra-assetpack' | |
gem 'sinatra-support', :require => 'sinatra/support/compasssupport' | |
# Component requirements | |
gem 'haml' |
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/bash | |
# Example of the slack-usernames file: | |
# [email protected] @UABCDEF123 | |
# Fail script if any command fails | |
set -e | |
GITLAB_HOST=${GITLAB_HOST:-gitlab.com} | |
GITLAB_UPSTREAM_NAMESPACE=${GITLAB_UPSTREAM_NAMESPACE:-mycorpcompany} |