forked from devgru's block: Heatmap of git commits - basic
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
<div class="content"> | |
<div class="subscription-plan-container" data-plan-status="active"> | |
<div class="subscription-plan"> | |
<h2 class="plan-description"><span class="plan-name"></span> Plan</h2> | |
<p>A 3 month supply, shipped to you every 3 months. | |
<ul> | |
<li class="dropdownParent"> | |
<a href="#">Currently Active</a> | |
<ul class="submenu"> | |
<li><a class="cancel" href="cancel?subscription=4466b9bb55050f4ace2f68431683801a">Cancel my plan</a></li> |
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
deployment: | |
production: | |
branch: master | |
commands: | |
- git push [email protected]:yourapp.git $CIRCLE_SHA1:master | |
- heroku run rake db:migrate --app yourapp | |
- heroku run 'rake cache:clear' --app yourapp | |
staging: | |
branch: development | |
commands: |
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) { | |
// 1. All configuration goes here | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
concat: { | |
dist: { | |
src: [ | |
'app/assets/javascripts/libs/*.js', // All JS in the libs folder |