rvm implode
Then remove any reference to RVM in .z* files.
| /* | |
| * jquery.autogrow.js | |
| * | |
| * A plugin written for UserVoice that makes it easy to create textareas | |
| * that automatically resize to fit their contents. | |
| * | |
| * Based on Scott Moonen's original code for Prototype.js: | |
| * | |
| * <http://scottmoonen.com/2008/07/08/unobtrusive-javascript-expandable-textareas/> | |
| * |
| $start-color:#2B73A2; | |
| $number: 12; | |
| @for $i from 1 through $number { | |
| .label-#{$i} { | |
| color:adjust_hue($start-color, ($i - 1) * (360 / $number)); | |
| } | |
| } |
| > Lines beginning with `>` are comments. | |
| > Comments and empty lines are ignored. | |
| > | |
| > Each command is defined on a single line comprised of: | |
| > | |
| > 1. a case-insensitive, alpha-numeric trigger followed | |
| > by whitespace | |
| > 2. a url followed by whitespace (if the url contains | |
| > spaces they must be encoded as `%20`) | |
| > 3. a short description |
| (function(){ | |
| $('link[rel="stylesheet"]').each(function(i, elem) { | |
| // Make an anchor tag with the stylesheet's href -- this is a weird/handy way of | |
| // working with URLs in the browser. | |
| var anchorTag = $('a').attr('href', elem.getAttribute('href'))[0]; | |
| // Rewrite the URL to have a cache busting parameter. This assumes | |
| // that any query params weren't significant. | |
| anchorTag.search = "ts=" + (+new Date); | |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| /* | |
| A slightly more automated approach to BEM modifier classes: | |
| using '&' parent selector interpolation, modifiers extend their bases, | |
| so that HTML markup requires only the modifier class not the base *and* modifier | |
| */ |