Sha256: 078fbed25d5995f8e8511286d137a490102b97056683962cb9b1e6231d2901f9
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
# Fancytree::Rails fancytree-rails is a simple gem to add [FancyTree](https://github.com/mar10/fancytree) vendor files to the Rails asset pipeline. ## Installation Add this line to your application's Gemfile: gem 'fancytree-rails' And then execute: $ bundle Or install it yourself as: $ gem install fancytree-rails ## Usage In your Gemfile, add: ```ruby gem 'fancytree-rails' ``` Note that also [jquery-ui-rails](https://github.com/joliss/jquery-ui-rails) needs to be available. Require javascript to ```app/assets/javascripts/application.js```: ``` //= require fancytree ``` In case you want to use *gridnav* add also ```//=require fancytree/jquery.fancytree.gridnav.js``` Extend stylesheet assets ```app/assets/stylesheets/application.css``` by: ``` *= require ui.fancytree ``` or if you want to use another style include it directly: ``` *= require fancytree/skin-awesome/ui.fancytree ``` Note that for awesome style (extension) to work you to: 1. Add ```font-awesome-rails``` gem (and include its style in application.css) 2. Enable ```awesome``` extension in Fancytree. 3. Include extension code (```//= require fancytree/jquery.fancytree.awesome```) to ```app/assets/javascripts/application.js```. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fancytree-rails-2.0.0.pre.11.pre.1 | README.md |
fancytree-rails-2.0.0.pre.6.pre.1 | README.md |