select2-rails 2.1.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/select2-rails/version.rb +1 -1
- data/vendor/assets/javascripts/select2.js +928 -312
- data/vendor/assets/stylesheets/select2.css.sass +201 -118
- metadata +79 -83
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
*Version:
|
2
|
+
*Version: 3.0 Timestamp: Tue Jul 31 21:09:16 PDT 2012
|
3
3
|
|
4
4
|
.select2-container
|
5
5
|
position: relative
|
@@ -7,11 +7,11 @@
|
|
7
7
|
/* inline-block for ie7
|
8
8
|
zoom: 1
|
9
9
|
*display: inline
|
10
|
-
/*
|
11
|
-
*Force border-box so that % widths fit the parent
|
12
|
-
*container without overlap because of margin/padding.
|
13
|
-
*
|
14
|
-
*More Info : http://www.quirksmode.org/css/box.html
|
10
|
+
/*
|
11
|
+
* Force border-box so that % widths fit the parent
|
12
|
+
* container without overlap because of margin/padding.
|
13
|
+
*
|
14
|
+
* More Info : http://www.quirksmode.org/css/box.html
|
15
15
|
-moz-box-sizing: border-box
|
16
16
|
/* firefox
|
17
17
|
-ms-box-sizing: border-box
|
@@ -23,12 +23,12 @@
|
|
23
23
|
box-sizing: border-box
|
24
24
|
/* css3
|
25
25
|
|
26
|
-
.select2-drop
|
27
|
-
/*
|
28
|
-
*Force border-box so that % widths fit the parent
|
29
|
-
*container without overlap because of margin/padding.
|
30
|
-
*
|
31
|
-
*More Info : http://www.quirksmode.org/css/box.html
|
26
|
+
.select2-drop
|
27
|
+
/*
|
28
|
+
* Force border-box so that % widths fit the parent
|
29
|
+
* container without overlap because of margin/padding.
|
30
|
+
*
|
31
|
+
* More Info : http://www.quirksmode.org/css/box.html
|
32
32
|
-moz-box-sizing: border-box
|
33
33
|
/* firefox
|
34
34
|
-ms-box-sizing: border-box
|
@@ -40,13 +40,28 @@
|
|
40
40
|
box-sizing: border-box
|
41
41
|
/* css3
|
42
42
|
|
43
|
-
.select2-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
43
|
+
.select2-search
|
44
|
+
/*
|
45
|
+
* Force border-box so that % widths fit the parent
|
46
|
+
* container without overlap because of margin/padding.
|
47
|
+
*
|
48
|
+
* More Info : http://www.quirksmode.org/css/box.html
|
49
|
+
-moz-box-sizing: border-box
|
50
|
+
/* firefox
|
51
|
+
-ms-box-sizing: border-box
|
52
|
+
/* ie
|
53
|
+
-webkit-box-sizing: border-box
|
54
|
+
/* webkit
|
55
|
+
-khtml-box-sizing: border-box
|
56
|
+
/* konqueror
|
57
|
+
box-sizing: border-box
|
58
|
+
/* css3
|
59
|
+
input
|
60
|
+
/*
|
61
|
+
* Force border-box so that % widths fit the parent
|
62
|
+
* container without overlap because of margin/padding.
|
63
|
+
*
|
64
|
+
* More Info : http://www.quirksmode.org/css/box.html
|
50
65
|
-moz-box-sizing: border-box
|
51
66
|
/* firefox
|
52
67
|
-ms-box-sizing: border-box
|
@@ -57,6 +72,8 @@
|
|
57
72
|
/* konqueror
|
58
73
|
box-sizing: border-box
|
59
74
|
/* css3
|
75
|
+
|
76
|
+
.select2-container
|
60
77
|
.select2-choice
|
61
78
|
background-color: #fff
|
62
79
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white))
|
@@ -82,6 +99,19 @@
|
|
82
99
|
padding: 0 0 0 8px
|
83
100
|
color: #444
|
84
101
|
text-decoration: none
|
102
|
+
&.select2-drop-above .select2-choice
|
103
|
+
border-bottom-color: #aaa
|
104
|
+
-webkit-border-radius: 0px 0px 4px 4px
|
105
|
+
-moz-border-radius: 0px 0px 4px 4px
|
106
|
+
border-radius: 0px 0px 4px 4px
|
107
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white))
|
108
|
+
background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%)
|
109
|
+
background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%)
|
110
|
+
background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%)
|
111
|
+
background-image: -ms-linear-gradient(top, #eeeeee 0%, white 90%)
|
112
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 )
|
113
|
+
background-image: linear-gradient(top, #eeeeee 0%, white 90%)
|
114
|
+
.select2-choice
|
85
115
|
span
|
86
116
|
margin-right: 26px
|
87
117
|
display: block
|
@@ -106,93 +136,114 @@
|
|
106
136
|
&:hover
|
107
137
|
background-position: right -11px
|
108
138
|
cursor: pointer
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
border-radius:
|
129
|
-
-moz-
|
130
|
-
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
.
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
139
|
+
|
140
|
+
.select2-drop
|
141
|
+
background: #fff
|
142
|
+
color: #000
|
143
|
+
border: 1px solid #aaa
|
144
|
+
border-top: 0
|
145
|
+
position: absolute
|
146
|
+
top: 100%
|
147
|
+
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
148
|
+
-moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
149
|
+
-o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
150
|
+
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
151
|
+
z-index: 9999
|
152
|
+
width: 100%
|
153
|
+
margin-top: -1px
|
154
|
+
-webkit-border-radius: 0 0 4px 4px
|
155
|
+
-moz-border-radius: 0 0 4px 4px
|
156
|
+
border-radius: 0 0 4px 4px
|
157
|
+
&.select2-drop-above
|
158
|
+
-webkit-border-radius: 4px 4px 0px 0px
|
159
|
+
-moz-border-radius: 4px 4px 0px 0px
|
160
|
+
border-radius: 4px 4px 0px 0px
|
161
|
+
margin-top: 1px
|
162
|
+
border-top: 1px solid #aaa
|
163
|
+
border-bottom: 0
|
164
|
+
-webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15)
|
165
|
+
-moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15)
|
166
|
+
-o-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15)
|
167
|
+
box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15)
|
168
|
+
|
169
|
+
.select2-container div
|
170
|
+
-webkit-border-radius: 0 4px 4px 0
|
171
|
+
-moz-border-radius: 0 4px 4px 0
|
172
|
+
border-radius: 0 4px 4px 0
|
173
|
+
-moz-background-clip: padding
|
174
|
+
-webkit-background-clip: padding-box
|
175
|
+
background-clip: padding-box
|
176
|
+
background: #ccc
|
177
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #cccccc), color-stop(0.6, #eeeeee))
|
178
|
+
background-image: -webkit-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%)
|
179
|
+
background-image: -moz-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%)
|
180
|
+
background-image: -o-linear-gradient(bottom, #cccccc 0%, #eeeeee 60%)
|
181
|
+
background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%)
|
182
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cccccc', endColorstr = '#eeeeee', GradientType = 0)
|
183
|
+
background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%)
|
184
|
+
border-left: 1px solid #aaa
|
185
|
+
position: absolute
|
186
|
+
right: 0
|
187
|
+
top: 0
|
188
|
+
display: block
|
189
|
+
height: 100%
|
190
|
+
width: 18px
|
191
|
+
b
|
192
|
+
background: image-url('select2.png') no-repeat 0 1px
|
162
193
|
display: block
|
163
|
-
position: absolute
|
164
|
-
left: -10000px
|
165
|
-
.select2-search input
|
166
|
-
background: white image-url('select2.png') no-repeat 100% -22px
|
167
|
-
background: image-url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
168
|
-
background: image-url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
169
|
-
background: image-url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
170
|
-
background: image-url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
171
|
-
background: image-url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
172
|
-
background: image-url('select2.png') no-repeat 100% -22px, linear-gradient(top, white 85%, #eeeeee 99%)
|
173
|
-
padding: 4px 20px 4px 5px
|
174
|
-
outline: 0
|
175
|
-
border: 1px solid #aaa
|
176
|
-
font-family: sans-serif
|
177
|
-
font-size: 1em
|
178
194
|
width: 100%
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
195
|
+
height: 100%
|
196
|
+
|
197
|
+
.select2-search
|
198
|
+
display: inline-block
|
199
|
+
white-space: nowrap
|
200
|
+
z-index: 10000
|
201
|
+
min-height: 26px
|
202
|
+
width: 100%
|
203
|
+
margin: 0
|
204
|
+
padding-left: 4px
|
205
|
+
padding-right: 4px
|
206
|
+
|
207
|
+
.select2-search-hidden
|
208
|
+
display: block
|
209
|
+
position: absolute
|
210
|
+
left: -10000px
|
211
|
+
|
212
|
+
.select2-search input
|
213
|
+
background: white image-url('select2.png') no-repeat 100% -22px
|
214
|
+
background: image-url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
215
|
+
background: image-url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
216
|
+
background: image-url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
217
|
+
background: image-url('select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
218
|
+
background: image-url('select2.png') no-repeat 100% -22px, -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
219
|
+
background: image-url('select2.png') no-repeat 100% -22px, linear-gradient(top, white 85%, #eeeeee 99%)
|
220
|
+
padding: 4px 20px 4px 5px
|
221
|
+
outline: 0
|
222
|
+
border: 1px solid #aaa
|
223
|
+
font-family: sans-serif
|
224
|
+
font-size: 1em
|
225
|
+
width: 100%
|
226
|
+
margin: 0
|
227
|
+
height: auto !important
|
228
|
+
min-height: 26px
|
229
|
+
-webkit-box-shadow: none
|
230
|
+
-moz-box-shadow: none
|
231
|
+
box-shadow: none
|
232
|
+
border-radius: 0
|
233
|
+
-moz-border-radius: 0
|
234
|
+
-webkit-border-radius: 0
|
235
|
+
|
236
|
+
.select2-drop.select2-drop-above input
|
237
|
+
margin-top: 4px
|
238
|
+
|
239
|
+
.select2-search input.select2-active
|
240
|
+
background: white image-url('spinner.gif') no-repeat 100%
|
241
|
+
background: image-url('spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
242
|
+
background: image-url('spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
243
|
+
background: image-url('spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
244
|
+
background: image-url('spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
245
|
+
background: image-url('spinner.gif') no-repeat 100%, -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
246
|
+
background: image-url('spinner.gif') no-repeat 100%, linear-gradient(top, white 85%, #eeeeee 99%)
|
196
247
|
|
197
248
|
.select2-container-active
|
198
249
|
.select2-choice, .select2-choices
|
@@ -232,20 +283,43 @@
|
|
232
283
|
|
233
284
|
/* results
|
234
285
|
|
235
|
-
.select2-
|
286
|
+
.select2-results
|
236
287
|
margin: 4px 4px 4px 0
|
237
288
|
padding: 0 0 0 4px
|
238
289
|
position: relative
|
239
290
|
overflow-x: hidden
|
240
291
|
overflow-y: auto
|
241
292
|
max-height: 200px
|
293
|
+
ul.select2-result-sub
|
294
|
+
margin: 0 0 0 0
|
295
|
+
> .select2-result-label
|
296
|
+
padding-left: 20px
|
297
|
+
ul.select2-result-sub
|
298
|
+
> .select2-result-label
|
299
|
+
padding-left: 40px
|
300
|
+
ul.select2-result-sub
|
301
|
+
> .select2-result-label
|
302
|
+
padding-left: 60px
|
303
|
+
ul.select2-result-sub
|
304
|
+
> .select2-result-label
|
305
|
+
padding-left: 80px
|
306
|
+
ul.select2-result-sub
|
307
|
+
> .select2-result-label
|
308
|
+
padding-left: 100px
|
309
|
+
ul.select2-result-sub
|
310
|
+
> .select2-result-label
|
311
|
+
padding-left: 110px
|
312
|
+
ul.select2-result-sub .select2-result-label
|
313
|
+
padding-left: 120px
|
242
314
|
li
|
243
|
-
line-height: 80%
|
244
|
-
padding: 7px 7px 8px
|
245
|
-
margin: 0
|
246
315
|
list-style: none
|
247
|
-
cursor: pointer
|
248
316
|
display: list-item
|
317
|
+
&.select2-result-with-children .select2-result-label
|
318
|
+
font-weight: bold
|
319
|
+
.select2-result-label
|
320
|
+
padding: 3px 7px 4px
|
321
|
+
margin: 0
|
322
|
+
cursor: pointer
|
249
323
|
.select2-highlighted
|
250
324
|
background: #3875d7
|
251
325
|
color: #fff
|
@@ -254,7 +328,7 @@
|
|
254
328
|
font-style: normal
|
255
329
|
.select2-highlighted em
|
256
330
|
background: transparent
|
257
|
-
.select2-no-results
|
331
|
+
.select2-no-results, .select2-selection-limit
|
258
332
|
background: #f4f4f4
|
259
333
|
display: list-item
|
260
334
|
.select2-disabled
|
@@ -262,13 +336,13 @@
|
|
262
336
|
|
263
337
|
/*
|
264
338
|
*disabled look for already selected choices in the results dropdown
|
265
|
-
*.select2-
|
339
|
+
*.select2-results .select2-disabled.select2-highlighted {
|
266
340
|
* color: #666;
|
267
341
|
* background: #f4f4f4;
|
268
342
|
* display: list-item;
|
269
343
|
* cursor: default;
|
270
344
|
*}
|
271
|
-
*.select2-
|
345
|
+
*.select2-results .select2-disabled {
|
272
346
|
* background: #f4f4f4;
|
273
347
|
* display: list-item;
|
274
348
|
* cursor: default;
|
@@ -311,9 +385,6 @@
|
|
311
385
|
height: auto !important
|
312
386
|
height: 1%
|
313
387
|
position: relative
|
314
|
-
.select2-drop
|
315
|
-
margin-top: 0
|
316
|
-
.select2-choices
|
317
388
|
min-height: 26px
|
318
389
|
&.select2-container-active .select2-choices
|
319
390
|
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
@@ -344,6 +415,8 @@
|
|
344
415
|
-moz-box-shadow: none
|
345
416
|
-o-box-shadow: none
|
346
417
|
box-shadow: none
|
418
|
+
&.select2-active
|
419
|
+
background: white image-url('spinner.gif') no-repeat 100% !important
|
347
420
|
|
348
421
|
.select2-default
|
349
422
|
color: #999 !important
|
@@ -396,9 +469,6 @@
|
|
396
469
|
.select2-choices
|
397
470
|
.select2-search-choice .select2-search-choice-close:hover, .select2-search-choice-focus .select2-search-choice-close
|
398
471
|
background-position: right -11px
|
399
|
-
.select2-results
|
400
|
-
margin: -1px 0 0
|
401
|
-
padding: 0
|
402
472
|
&.select2-container-disabled .select2-choices
|
403
473
|
background-color: #f4f4f4
|
404
474
|
background-image: none
|
@@ -415,3 +485,16 @@
|
|
415
485
|
/* disabled styles
|
416
486
|
|
417
487
|
/* end multiselect
|
488
|
+
|
489
|
+
.select2-result-selectable .select2-match
|
490
|
+
text-decoration: underline
|
491
|
+
|
492
|
+
.select2-result-unselectable
|
493
|
+
.select2-result-selectable .select2-match
|
494
|
+
text-decoration: underline
|
495
|
+
.select2-match
|
496
|
+
text-decoration: none
|
497
|
+
|
498
|
+
.select2-offscreen
|
499
|
+
position: absolute
|
500
|
+
left: -10000px
|
metadata
CHANGED
@@ -1,89 +1,84 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: select2-rails
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 3
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 3.0.0
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
11
|
+
authors:
|
8
12
|
- Rogerio Medeiros
|
9
13
|
autorequire:
|
10
14
|
bindir: bin
|
11
15
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '0.14'
|
16
|
+
|
17
|
+
date: 2012-08-06 00:00:00 -03:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
22
21
|
type: :runtime
|
22
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
segments:
|
27
|
+
- 0
|
28
|
+
- 14
|
29
|
+
version: "0.14"
|
30
|
+
name: thor
|
31
|
+
requirement: *id001
|
23
32
|
prerelease: false
|
24
|
-
|
25
|
-
|
26
|
-
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
type: :development
|
35
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
27
37
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
-
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
segments:
|
40
|
+
- 1
|
41
|
+
- 0
|
42
|
+
version: "1.0"
|
31
43
|
name: bundler
|
32
|
-
requirement:
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ~>
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: '1.0'
|
38
|
-
type: :development
|
44
|
+
requirement: *id002
|
39
45
|
prerelease: false
|
40
|
-
|
41
|
-
|
42
|
-
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
type: :development
|
48
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
43
50
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
-
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
segments:
|
53
|
+
- 3
|
54
|
+
- 0
|
55
|
+
version: "3.0"
|
47
56
|
name: rails
|
48
|
-
requirement:
|
49
|
-
none: false
|
50
|
-
requirements:
|
51
|
-
- - ~>
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '3.0'
|
54
|
-
type: :development
|
57
|
+
requirement: *id003
|
55
58
|
prerelease: false
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
type: :development
|
61
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
59
63
|
- - ~>
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
|
62
|
-
-
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
segments:
|
66
|
+
- 3
|
67
|
+
- 1
|
68
|
+
version: "3.1"
|
63
69
|
name: sass
|
64
|
-
requirement:
|
65
|
-
none: false
|
66
|
-
requirements:
|
67
|
-
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '3.1'
|
70
|
-
type: :development
|
70
|
+
requirement: *id004
|
71
71
|
prerelease: false
|
72
|
-
|
73
|
-
|
74
|
-
requirements:
|
75
|
-
- - ~>
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '3.1'
|
78
|
-
description: Select2 is a jQuery based replacement for select boxes. It supports searching,
|
79
|
-
remote data sets, and infinite scrolling of results. This gem integrates Select2
|
80
|
-
with Rails asset pipeline for easy of use.
|
81
|
-
email:
|
72
|
+
description: Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results. This gem integrates Select2 with Rails asset pipeline for easy of use.
|
73
|
+
email:
|
82
74
|
- argerim@gmail.com
|
83
75
|
executables: []
|
76
|
+
|
84
77
|
extensions: []
|
78
|
+
|
85
79
|
extra_rdoc_files: []
|
86
|
-
|
80
|
+
|
81
|
+
files:
|
87
82
|
- .gitignore
|
88
83
|
- Gemfile
|
89
84
|
- LICENSE
|
@@ -98,34 +93,35 @@ files:
|
|
98
93
|
- vendor/assets/images/spinner.gif
|
99
94
|
- vendor/assets/javascripts/select2.js
|
100
95
|
- vendor/assets/stylesheets/select2.css.sass
|
96
|
+
has_rdoc: true
|
101
97
|
homepage: https://github.com/argerim/select2-rails
|
102
98
|
licenses: []
|
99
|
+
|
103
100
|
post_install_message:
|
104
101
|
rdoc_options: []
|
105
|
-
|
102
|
+
|
103
|
+
require_paths:
|
106
104
|
- lib
|
107
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
version: '0'
|
113
|
-
segments:
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
segments:
|
114
110
|
- 0
|
115
|
-
|
116
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
version: '0'
|
122
|
-
segments:
|
111
|
+
version: "0"
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
segments:
|
123
117
|
- 0
|
124
|
-
|
118
|
+
version: "0"
|
125
119
|
requirements: []
|
120
|
+
|
126
121
|
rubyforge_project:
|
127
|
-
rubygems_version: 1.
|
122
|
+
rubygems_version: 1.3.6
|
128
123
|
signing_key:
|
129
124
|
specification_version: 3
|
130
125
|
summary: Integrate Select2 javascript library with Rails asset pipeline
|
131
126
|
test_files: []
|
127
|
+
|