Sha256: 42d2f78d7fde409eedf1430167a0101a65602fc8a40ab6ab4c0a1be444a4ad16
Contents?: true
Size: 1.06 KB
Versions: 6
Compression:
Stored size: 1.06 KB
Contents
# SweetAlert RubyOnRails integration gem Use [SweetAlert](http://tristanedwards.me/sweetalert) with Rails 3.1+ ## Installation Add this line to your application's Gemfile: gem 'sweetalert-rails' And then execute: $ bundle Or install it yourself as: $ gem install sweetalert-rails Now you need to edit your app/assets/javascripts/application.js file and add the following line: ``` javascript //= require sweet-alert ``` And then edit your `app/assets/stylesheets/application.css` file to look something like: ``` css /* *= require_self *= require sweet-alert *= require_tree . */ ``` ## Usage With the gem installed and included in your asset manifests, you can now use SweetAlert as you normally would. ``` javascript sweetAlert("Awesome!"); ``` ## Contributing 1. Fork it ( https://github.com/[my-github-username]/sweetalert-rails/fork ) 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 a new Pull Request
Version data entries
6 entries across 6 versions & 1 rubygems