1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
# bootstrap-switch-rails [](http://badge.fury.io/rb/bootstrap-switch-rails)
bootstrap-switch-rails provides the [bootstrap-switch](http://bootstrapswitch.site/)
plugin as a Rails engine to use it within the asset pipeline.
## Installation
Add this to your Gemfile:
```ruby
gem "bootstrap-switch-rails"
```
and run `bundle install`.
## Usage
In your `application.js`, include the following:
```js
//= require bootstrap-switch
```
In your `application.css`, include the following:
```css
/*
* for bootstrap3
*= require bootstrap3-switch
*
* or for bootstrap2
*= require bootstrap2-switch
*/
*= require bootstrap-switch
```
or in any `SASS` file, include the following:
```css
/* for bootstrap3 */
@import "bootstrap3-switch";
/* or for bootstrap2 */
@import "bootstrap2-switch";
```
## Examples
See the [demo page](http://bootstrapswitch.site/examples.html) for examples how to use the plugin
## License
* The [bootstrap-switch](http://bootstrapswitch.site/) plugin is licensed under the
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
* The [bootstrap-switch-rails](https://github.com/manuelvanrijn/bootstrap-switch-rails) project is
licensed under the [MIT License](http://opensource.org/licenses/mit-license.html)
## 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
|