-
Notifications
You must be signed in to change notification settings - Fork 79
Home
We have decided to discontinue the Compass.app & Fire.app projects. You can still get the source code under GPL as always, and we have put the latest binary on GitHub for free. What happened?
Fire.app is a menubar only app for dead easy HTML prototyping. It supports Sass/Compass, Haml, ERB, Markdown, CoffeeScript, and more.
Fire.app is written in Java (JRuby), and works in mac, linux and windows.
Fire.app has been tested in:
- Windows: Windows 7/8/8.1
- OS X: 10.8 32/64bit, 10.9 64bit
- Linux: Arch Linux 32/64bit
Fire.app is written in Java (JRuby), so you must install JRE(Java Runtime Environment) first. If you do not have JRE installed, Fire.app will guide you to install it first.
You can download the latest release.
There is no need to install Fire.app. You can just unzip and put it anywhere. You can even use Dropbox to sync between computers.
Fire.app has so many features, so we make a beginner project to demonstrate its ability. You may also want to check our advanced project.
If you want to build your own copy, you will need JRuby and rawr.
For example, installing jRuby 1.6.8 with rvm:
echo "rvm use jruby-1.6.8@fireapp --create --install" > .rvmrc;
# rvm will try to install jRuby now
cd .
# Verify it
ruby --version;
or rbenv:
echo "jruby-1.6.8" > .rbenv-version;
rbenv install jruby-1.6.8;
ruby --version;
gem install bundler;
bundle install;
If you get an error like Could not load OpenSSL
, try this:
gem install jruby-openssl;
bundle install;
# Available tasks:
bundle exec rake -T;
# Compile it, generate the FireApp.app:
bundle exec rake rawr:bundle:app;
# Drag to Applications folder.
open package/
For example, installing jRuby 1.6.8 with rvm:
echo "rvm use jruby-1.6.8@fireapp --create --install" > .rvmrc;
# rvm will try to install jRuby now
cd .
# Verify it
ruby --version;
or rbenv:
echo "jruby-1.6.8" > .rbenv-version;
rbenv install jruby-1.6.8;
ruby --version;
gem install bundler;
bundle install;
# Available tasks:
jruby -S rake -T;
# Compile it, generate th FireApp.app:
jruby -S rake rawr:bundle:linux;
# Drag to Applications folder.
cd package/jar/
# Start FireApp
java -jar fire-app.jar
Copyright (c) 2012 Handlino Inc. Licensed under GPL v2.
- Home
- Getting Started
- Preferences
- Use Compass Extensions
- Templates, Layouts, and Partials
- Template Helpers
- CoffeeScript
- Custom Handlers
- Build Project
- Deploy To Heroku
- Fire.app can't be opened because it is from an unindentified developer on Mac OSX 10.8
- FAQ
- CHANGELOG
- Fire.app-使用說明
- Template Helpers (zh tw)
- Templates, Layouts & Partials (zh tw)
- Sublime Text 2 的 Autocomplete 設定方式
- Mac OS X 10.8 (Mountain Lion) 開啟 Fire.app 問題