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
| class AppBuilder < Rails::AppBuilder | |
| # Checks to make sure that hub is installed before continuing | |
| def rakefile | |
| if `which hub`.strip == "" | |
| say "hub", "Please install hub. https://github.com/defunkt/hub" | |
| exit 1 | |
| end | |
| end | |
| # Makes the readme use Markdown and pre-populates it with basic information |
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
| /** | |
| * | |
| * Created by: Daniel Flynn | |
| * Date: Mar 04, 2013 | |
| * jQuery plugin for a lazy loading slideshow | |
| * Assumes that the slides or content is in order and has a data-src attribute. | |
| * | |
| * Currently is only working with images as content. Other file types will be added | |
| * in as development continues | |
| * |
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
| /** | |
| * | |
| * Created by: Daniel Flynn | |
| * Date: Jan 17, 2013 | |
| * Updated: Jan 17, 2013 | |
| * jQuery plugin for a dynamic country/state select field | |
| * | |
| **/ | |
| (function($){ |
NewerOlder