This is a simple Rails asset pipeline gem packaging the Sencha Ext JS Framework (GPL version). It is based on ext_rails_shim, but without any Rails integration besides making the assets available to the asset pipeline.
The Ext JS default themes have been recompiled to update the image assets paths to conform to Rails asset pipeline conventions.
The currently bundled version is Ext JS 4.1.0 GPL
Add this line to your application's Gemfile:
gem 'extjs4-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install extjs4-rails
Just include the desired theme css file
<%= stylesheet_include_tag 'extjs4-rails/ext-all' %>
and JS file
<%= javascript_include_tag 'extjs4-rails/ext-all' %>
Don't forget to add the chosen files to config.assets.precompile
config.assets.precompile << 'extjs4-rails/ext-all.js'
config.assets.precompile << 'extjs4-rails/ext-all.css'
Note: The ext-all*.js versions should be used, as Ext JS' dynamic class loading is incompatible with the asset pipeline.
You can fork this gem and run
EXTJS_DIR=/path/to/extjs-4.x.x rake --trace extjs4-rails:install
to rebuild Ext JS, i.e. when you built your own theme.
GPLv3 like Ext JS.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request