# es5-shim asset gem for Rails This asset gem packages [es5-shim](https://github.com/kriskowal/es5-shim) for the Rails asset pipeline. ## Installation Add this line to your application's Gemfile: gem 'es5-shim-rails' or gem 'es5-shim-rails', :git => "git://github.com/yourabi/es5-shim-rails.git" And then execute: $ bundle Or install it yourself as: $ gem install es5-shim-rails ## Usage To use es5-shim in your rails app enable it via the asset pipeline (app/assets/javascripts/application.js). Add one of the folllwing lines to your application.js manifest: ```js //= require es5-shim/es5-shim //= require es5-shim/es5-shim-min //= require es5-shim/es5-sham //= require es5-shim/es5-sham-min ``` Currently this version tracks es5-shim 2.0.5 [commit 6221329363](https://github.com/msievers/es5-shim-rails/commit/62213293633462d04770e658c6e8e4427c67d96a). ## 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