Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshdover/hermes
Build mechanism for preprocessed phonegap apps
https://github.com/joshdover/hermes
Last synced: about 1 month ago
JSON representation
Build mechanism for preprocessed phonegap apps
- Host: GitHub
- URL: https://github.com/joshdover/hermes
- Owner: joshdover
- License: mit
- Created: 2013-12-18T21:24:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-12T16:43:17.000Z (about 10 years ago)
- Last Synced: 2023-03-25T01:45:28.224Z (almost 2 years ago)
- Language: Ruby
- Homepage:
- Size: 156 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Don't use this anymore
I don't use middleman anymore and neither should you. Go checkout [gulp](http://gulpjs.com/) or [grunt](http://gruntjs.com/).
Hermes
===
Starter project for phonegap that uses [middleman](http://middlemanapp.com) as a build system
for compiling preprocessed HTML, CSS, and JS.###### Preprocessing
- [Slim](http://slim-lang.com) *[for html]*
- [SASS](http://sass-lang.com) *[for css]*
- [CoffeeScript](http://coffeescript.org) *[for js]*###### Tools
- [Bower](http://bower.io) *[js package management]*
- [Compass](http://compass-style.org) *[sass helpers/mixins]*## Getting Started
1. Clone or fork the repository
2. `bundle`
3. `middleman server`
4. Make changes in the src directory
5. `phonegap run [platform]` - calls `middleman build` for you## Using Bower
1. Find and install the packages you need...
```
$ bower search PACKAGE_NAME
$ bower install ACTUAL_PACKAGE_NAME -S
```2. Include the assets in your js/css files (paths relative to the root 'bower' directory )
`#=require 'folder/file'` - *for js files*
`@import 'folder/file'` - *for css files*