selectize-rails 0.11.2 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -24
- data/README.md +68 -67
- data/lib/selectize-rails/version.rb +5 -5
- data/vendor/assets/javascripts/selectize.js +3667 -3501
- data/vendor/assets/stylesheets/selectize.bootstrap2.css +487 -487
- data/vendor/assets/stylesheets/selectize.bootstrap3.css +401 -401
- data/vendor/assets/stylesheets/selectize.css +317 -317
- data/vendor/assets/stylesheets/selectize.default.css +387 -387
- data/vendor/assets/stylesheets/selectize.legacy.css +364 -364
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d196a59a1130304042c322202152304802c3181
|
4
|
+
data.tar.gz: 8a17c1c30aaeda663534659de27c8df23bd47a7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11950fbd6f3b51547d5e939233bf9406debcd75f7ec06cbb0e6935be14c9691ff7c3f6ca2eb464d94f41abf14db4fed20287b9a2da8b2c65756c0d842528a855
|
7
|
+
data.tar.gz: d93ce317ce836ddb3e8939909d9c1d96a3a8643f85f31c18b379fea872cbd597b683c46e0fe4a98c2cd3226c85b4a9429609f5a7cc1fcc51b14e0378b5eb9099
|
data/CHANGELOG.md
CHANGED
@@ -1,24 +1,25 @@
|
|
1
|
-
# Changelog
|
2
|
-
|
3
|
-
| Version | Notes |
|
4
|
-
| --------:| ----------------------------------------------------------- |
|
5
|
-
| 0.
|
6
|
-
| 0.11.
|
7
|
-
| 0.
|
8
|
-
| 0.9.
|
9
|
-
| 0.
|
10
|
-
| 0.8.
|
11
|
-
| 0.8.
|
12
|
-
| 0.8.
|
13
|
-
| 0.8.
|
14
|
-
| 0.
|
15
|
-
| 0.7.
|
16
|
-
| 0.7.
|
17
|
-
| 0.7.
|
18
|
-
| 0.7.
|
19
|
-
| 0.7.
|
20
|
-
| 0.7.
|
21
|
-
|
|
22
|
-
|
|
23
|
-
| 0.6.
|
24
|
-
| 0.1
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
| Version | Notes |
|
4
|
+
| --------:| ----------------------------------------------------------- |
|
5
|
+
| 0.12.0 | Update to v0.12.0 of selectize.js |
|
6
|
+
| 0.11.2 | Update to v0.11.2 of selectize.js |
|
7
|
+
| 0.11.0 | Update to v0.11.0 of selectize.js |
|
8
|
+
| 0.9.1 | Update to v0.9.1 of selectize.js |
|
9
|
+
| 0.9.0 | Update to v0.9.0 of selectize.js |
|
10
|
+
| 0.8.5 | Update to v0.8.5 of selectize.js |
|
11
|
+
| 0.8.4 | Update to v0.8.4 of selectize.js |
|
12
|
+
| 0.8.3 | Update to v0.8.3 of selectize.js |
|
13
|
+
| 0.8.1 | Update to v0.8.1 of selectize.js |
|
14
|
+
| 0.8.0 | Update to v0.8.0 of selectize.js |
|
15
|
+
| 0.7.7 | Update to v0.7.7 of selectize.js |
|
16
|
+
| 0.7.6 | Update to v0.7.6 of selectize.js |
|
17
|
+
| 0.7.5 | Update to v0.7.5 of selectize.js |
|
18
|
+
| 0.7.4 | Update to v0.7.4 of selectize.js |
|
19
|
+
| 0.7.3 | Update to v0.7.3 of selectize.js |
|
20
|
+
| 0.7.2 | Update to v0.7.2 of selectize.js |
|
21
|
+
| 0.7.0 | Update to v0.7.0 of selectize.js |
|
22
|
+
| 0.6.14 | Update to v0.6.14 of selectize.js |
|
23
|
+
| 0.6.4 | Update to v0.6.4 of selectize.js |
|
24
|
+
| 0.6.1 | Update and set gem version equal to selectize.js version |
|
25
|
+
| 0.1.0 | Initial release |
|
data/README.md
CHANGED
@@ -1,67 +1,68 @@
|
|
1
|
-
# selectize-rails [![Gem Version](https://badge.fury.io/rb/selectize-rails.png)](http://badge.fury.io/rb/selectize-rails)
|
2
|
-
|
3
|
-
selectize-rails provides the [selectize.js](http://brianreavis.github.io/selectize.js/)
|
4
|
-
plugin as a Rails engine to use it within the asset pipeline.
|
5
|
-
|
6
|
-
## Installation
|
7
|
-
|
8
|
-
Add this to your Gemfile:
|
9
|
-
|
10
|
-
```ruby
|
11
|
-
gem "selectize-rails"
|
12
|
-
```
|
13
|
-
|
14
|
-
and run `bundle install`.
|
15
|
-
|
16
|
-
## Usage
|
17
|
-
|
18
|
-
In your `application.js`, include the following:
|
19
|
-
|
20
|
-
```js
|
21
|
-
//= require selectize
|
22
|
-
```
|
23
|
-
|
24
|
-
In your `application.css`, include the following:
|
25
|
-
|
26
|
-
```css
|
27
|
-
*= require selectize
|
28
|
-
*= require selectize.default
|
29
|
-
```
|
30
|
-
|
31
|
-
### Themes
|
32
|
-
|
33
|
-
To include additional theme's you can replace the `selectize.default` for one of the [theme files](https://github.com/brianreavis/selectize.js/tree/master/dist/css)
|
34
|
-
|
35
|
-
|
36
|
-
## Examples
|
37
|
-
|
38
|
-
See the [demo page of Brian Reavis](http://brianreavis.github.io/selectize.js/) for examples how to use the plugin
|
39
|
-
|
40
|
-
## Changes
|
41
|
-
|
42
|
-
| Version | Notes |
|
43
|
-
| --------:| ----------------------------------------------------------- |
|
44
|
-
| 0.
|
45
|
-
| 0.11.
|
46
|
-
| 0.
|
47
|
-
| 0.9.
|
48
|
-
| 0.
|
49
|
-
| 0.8.
|
50
|
-
| 0.8.
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
1
|
+
# selectize-rails [![Gem Version](https://badge.fury.io/rb/selectize-rails.png)](http://badge.fury.io/rb/selectize-rails)
|
2
|
+
|
3
|
+
selectize-rails provides the [selectize.js](http://brianreavis.github.io/selectize.js/)
|
4
|
+
plugin as a Rails engine to use it within the asset pipeline.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this to your Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "selectize-rails"
|
12
|
+
```
|
13
|
+
|
14
|
+
and run `bundle install`.
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
In your `application.js`, include the following:
|
19
|
+
|
20
|
+
```js
|
21
|
+
//= require selectize
|
22
|
+
```
|
23
|
+
|
24
|
+
In your `application.css`, include the following:
|
25
|
+
|
26
|
+
```css
|
27
|
+
*= require selectize
|
28
|
+
*= require selectize.default
|
29
|
+
```
|
30
|
+
|
31
|
+
### Themes
|
32
|
+
|
33
|
+
To include additional theme's you can replace the `selectize.default` for one of the [theme files](https://github.com/brianreavis/selectize.js/tree/master/dist/css)
|
34
|
+
|
35
|
+
|
36
|
+
## Examples
|
37
|
+
|
38
|
+
See the [demo page of Brian Reavis](http://brianreavis.github.io/selectize.js/) for examples how to use the plugin
|
39
|
+
|
40
|
+
## Changes
|
41
|
+
|
42
|
+
| Version | Notes |
|
43
|
+
| --------:| ----------------------------------------------------------- |
|
44
|
+
| 0.12.0 | Update to v0.12.0 of selectize.js |
|
45
|
+
| 0.11.2 | Update to v0.11.2 of selectize.js |
|
46
|
+
| 0.11.0 | Update to v0.11.0 of selectize.js |
|
47
|
+
| 0.9.1 | Update to v0.9.1 of selectize.js |
|
48
|
+
| 0.9.0 | Update to v0.9.0 of selectize.js |
|
49
|
+
| 0.8.5 | Update to v0.8.5 of selectize.js |
|
50
|
+
| 0.8.4 | Update to v0.8.4 of selectize.js |
|
51
|
+
| 0.8.3 | Update to v0.8.3 of selectize.js |
|
52
|
+
|
53
|
+
[older](CHANGELOG.md)
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
* The [selectize.js](http://brianreavis.github.io/selectize.js/) plugin is licensed under the
|
58
|
+
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
59
|
+
* The [selectize-rails](https://github.com/manuelvanrijn/selectize-rails) project is
|
60
|
+
licensed under the [MIT License](http://opensource.org/licenses/mit-license.html)
|
61
|
+
|
62
|
+
## Contributing
|
63
|
+
|
64
|
+
1. Fork it
|
65
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
66
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
67
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
68
|
+
5. Create new Pull Request
|
@@ -1,5 +1,5 @@
|
|
1
|
-
module Selectize
|
2
|
-
module Rails
|
3
|
-
VERSION = "0.
|
4
|
-
end
|
5
|
-
end
|
1
|
+
module Selectize
|
2
|
+
module Rails
|
3
|
+
VERSION = "0.12.0"
|
4
|
+
end
|
5
|
+
end
|