blacklight_range_limit 2.3.0 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/.gitignore +2 -2
  2. data/.travis.yml +7 -13
  3. data/Gemfile +8 -34
  4. data/LICENSE +15 -0
  5. data/README.rdoc +25 -7
  6. data/Rakefile +3 -4
  7. data/VERSION +1 -1
  8. data/app/assets/javascripts/blacklight_range_limit.js +5 -2
  9. data/app/assets/javascripts/blacklight_range_limit/range_limit_distro_facets.js +144 -68
  10. data/app/assets/javascripts/blacklight_range_limit/range_limit_slider.js +68 -36
  11. data/app/assets/stylesheets/blacklight_range_limit.css.scss +1 -46
  12. data/app/assets/stylesheets/blacklight_range_limit/blacklight_range_limit.css +12 -2
  13. data/app/helpers/range_limit_helper.rb +7 -1
  14. data/app/views/blacklight_range_limit/_range_limit_panel.html.erb +27 -11
  15. data/app/views/blacklight_range_limit/_range_segments.html.erb +13 -8
  16. data/blacklight_range_limit.gemspec +9 -12
  17. data/config/jetty.yml +7 -2
  18. data/lib/blacklight_range_limit/controller_override.rb +4 -13
  19. data/lib/blacklight_range_limit/route_sets.rb +21 -4
  20. data/lib/blacklight_range_limit/view_helper_override.rb +27 -11
  21. data/lib/generators/blacklight_range_limit/assets_generator.rb +9 -2
  22. data/spec/features/blacklight_range_limit_spec.rb +5 -5
  23. data/spec/spec_helper.rb +7 -1
  24. data/spec/test_app_templates/Gemfile.extra +14 -1
  25. data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -15
  26. data/spec/test_app_templates/lib/tasks/blacklight_test_app.rake +0 -6
  27. data/vendor/assets/javascripts/bootstrap-slider.js +388 -0
  28. data/vendor/assets/javascripts/flot/excanvas.min.js +1 -1
  29. data/vendor/assets/javascripts/flot/jquery.flot.js +1328 -790
  30. data/vendor/assets/javascripts/flot/jquery.flot.selection.js +76 -60
  31. data/vendor/assets/stylesheets/slider.css +138 -0
  32. metadata +74 -110
  33. checksums.yaml +0 -7
  34. data/.rspec +0 -1
  35. data/MIT-LICENSE +0 -20
  36. data/solr/sample_solr_documents.yml +0 -641
  37. data/vendor/assets/javascripts/jquery-ui-1.9.2.custom.js +0 -1654
@@ -1,68 +1,80 @@
1
- /*
2
- Flot plugin for selecting regions.
3
-
4
- The plugin defines the following options:
5
-
6
- selection: {
7
- mode: null or "x" or "y" or "xy",
8
- color: color
9
- }
10
-
11
- Selection support is enabled by setting the mode to one of "x", "y" or
12
- "xy". In "x" mode, the user will only be able to specify the x range,
13
- similarly for "y" mode. For "xy", the selection becomes a rectangle
14
- where both ranges can be specified. "color" is color of the selection
15
- (if you need to change the color later on, you can get to it with
16
- plot.getOptions().selection.color).
17
-
18
- When selection support is enabled, a "plotselected" event will be
19
- emitted on the DOM element you passed into the plot function. The
20
- event handler gets a parameter with the ranges selected on the axes,
21
- like this:
22
-
23
- placeholder.bind("plotselected", function(event, ranges) {
24
- alert("You selected " + ranges.xaxis.from + " to " + ranges.xaxis.to)
25
- // similar for yaxis - with multiple axes, the extra ones are in
26
- // x2axis, x3axis, ...
27
- });
28
-
29
- The "plotselected" event is only fired when the user has finished
30
- making the selection. A "plotselecting" event is fired during the
31
- process with the same parameters as the "plotselected" event, in case
32
- you want to know what's happening while it's happening,
33
-
34
- A "plotunselected" event with no arguments is emitted when the user
35
- clicks the mouse to remove the selection.
1
+ /* Flot plugin for selecting regions of a plot.
2
+
3
+ Copyright (c) 2007-2013 IOLA and Ole Laursen.
4
+ Licensed under the MIT license.
5
+
6
+ The plugin supports these options:
7
+
8
+ selection: {
9
+ mode: null or "x" or "y" or "xy",
10
+ color: color,
11
+ shape: "round" or "miter" or "bevel",
12
+ minSize: number of pixels
13
+ }
14
+
15
+ Selection support is enabled by setting the mode to one of "x", "y" or "xy".
16
+ In "x" mode, the user will only be able to specify the x range, similarly for
17
+ "y" mode. For "xy", the selection becomes a rectangle where both ranges can be
18
+ specified. "color" is color of the selection (if you need to change the color
19
+ later on, you can get to it with plot.getOptions().selection.color). "shape"
20
+ is the shape of the corners of the selection.
21
+
22
+ "minSize" is the minimum size a selection can be in pixels. This value can
23
+ be customized to determine the smallest size a selection can be and still
24
+ have the selection rectangle be displayed. When customizing this value, the
25
+ fact that it refers to pixels, not axis units must be taken into account.
26
+ Thus, for example, if there is a bar graph in time mode with BarWidth set to 1
27
+ minute, setting "minSize" to 1 will not make the minimum selection size 1
28
+ minute, but rather 1 pixel. Note also that setting "minSize" to 0 will prevent
29
+ "plotunselected" events from being fired when the user clicks the mouse without
30
+ dragging.
31
+
32
+ When selection support is enabled, a "plotselected" event will be emitted on
33
+ the DOM element you passed into the plot function. The event handler gets a
34
+ parameter with the ranges selected on the axes, like this:
35
+
36
+ placeholder.bind( "plotselected", function( event, ranges ) {
37
+ alert("You selected " + ranges.xaxis.from + " to " + ranges.xaxis.to)
38
+ // similar for yaxis - with multiple axes, the extra ones are in
39
+ // x2axis, x3axis, ...
40
+ });
41
+
42
+ The "plotselected" event is only fired when the user has finished making the
43
+ selection. A "plotselecting" event is fired during the process with the same
44
+ parameters as the "plotselected" event, in case you want to know what's
45
+ happening while it's happening,
46
+
47
+ A "plotunselected" event with no arguments is emitted when the user clicks the
48
+ mouse to remove the selection. As stated above, setting "minSize" to 0 will
49
+ destroy this behavior.
36
50
 
37
51
  The plugin allso adds the following methods to the plot object:
38
52
 
39
- - setSelection(ranges, preventEvent)
53
+ - setSelection( ranges, preventEvent )
40
54
 
41
- Set the selection rectangle. The passed in ranges is on the same
42
- form as returned in the "plotselected" event. If the selection mode
43
- is "x", you should put in either an xaxis range, if the mode is "y"
44
- you need to put in an yaxis range and both xaxis and yaxis if the
45
- selection mode is "xy", like this:
55
+ Set the selection rectangle. The passed in ranges is on the same form as
56
+ returned in the "plotselected" event. If the selection mode is "x", you
57
+ should put in either an xaxis range, if the mode is "y" you need to put in
58
+ an yaxis range and both xaxis and yaxis if the selection mode is "xy", like
59
+ this:
46
60
 
47
- setSelection({ xaxis: { from: 0, to: 10 }, yaxis: { from: 40, to: 60 } });
61
+ setSelection({ xaxis: { from: 0, to: 10 }, yaxis: { from: 40, to: 60 } });
48
62
 
49
- setSelection will trigger the "plotselected" event when called. If
50
- you don't want that to happen, e.g. if you're inside a
51
- "plotselected" handler, pass true as the second parameter. If you
52
- are using multiple axes, you can specify the ranges on any of those,
53
- e.g. as x2axis/x3axis/... instead of xaxis, the plugin picks the
54
- first one it sees.
55
-
56
- - clearSelection(preventEvent)
63
+ setSelection will trigger the "plotselected" event when called. If you don't
64
+ want that to happen, e.g. if you're inside a "plotselected" handler, pass
65
+ true as the second parameter. If you are using multiple axes, you can
66
+ specify the ranges on any of those, e.g. as x2axis/x3axis/... instead of
67
+ xaxis, the plugin picks the first one it sees.
68
+
69
+ - clearSelection( preventEvent )
57
70
 
58
71
  Clear the selection rectangle. Pass in true to avoid getting a
59
72
  "plotunselected" event.
60
73
 
61
74
  - getSelection()
62
75
 
63
- Returns the current selection in the same format as the
64
- "plotselected" event. If there's currently no selection, the
65
- function returns null.
76
+ Returns the current selection in the same format as the "plotselected"
77
+ event. If there's currently no selection, the function returns null.
66
78
 
67
79
  */
68
80
 
@@ -146,6 +158,8 @@ The plugin allso adds the following methods to the plot object:
146
158
  function getSelection() {
147
159
  if (!selectionIsSane())
148
160
  return null;
161
+
162
+ if (!selection.show) return null;
149
163
 
150
164
  var r = {}, c1 = selection.first, c2 = selection.second;
151
165
  $.each(plot.getAxes(), function (name, axis) {
@@ -274,7 +288,7 @@ The plugin allso adds the following methods to the plot object:
274
288
  }
275
289
 
276
290
  function selectionIsSane() {
277
- var minSize = 5;
291
+ var minSize = plot.getOptions().selection.minSize;
278
292
  return Math.abs(selection.second.x - selection.first.x) >= minSize &&
279
293
  Math.abs(selection.second.y - selection.first.y) >= minSize;
280
294
  }
@@ -305,13 +319,13 @@ The plugin allso adds the following methods to the plot object:
305
319
 
306
320
  ctx.strokeStyle = c.scale('a', 0.8).toString();
307
321
  ctx.lineWidth = 1;
308
- ctx.lineJoin = "round";
322
+ ctx.lineJoin = o.selection.shape;
309
323
  ctx.fillStyle = c.scale('a', 0.4).toString();
310
324
 
311
- var x = Math.min(selection.first.x, selection.second.x),
312
- y = Math.min(selection.first.y, selection.second.y),
313
- w = Math.abs(selection.second.x - selection.first.x),
314
- h = Math.abs(selection.second.y - selection.first.y);
325
+ var x = Math.min(selection.first.x, selection.second.x) + 0.5,
326
+ y = Math.min(selection.first.y, selection.second.y) + 0.5,
327
+ w = Math.abs(selection.second.x - selection.first.x) - 1,
328
+ h = Math.abs(selection.second.y - selection.first.y) - 1;
315
329
 
316
330
  ctx.fillRect(x, y, w, h);
317
331
  ctx.strokeRect(x, y, w, h);
@@ -335,7 +349,9 @@ The plugin allso adds the following methods to the plot object:
335
349
  options: {
336
350
  selection: {
337
351
  mode: null, // one of null, "x", "y" or "xy"
338
- color: "#e8cfac"
352
+ color: "#e8cfac",
353
+ shape: "round", // one of "round", "miter", or "bevel"
354
+ minSize: 5 // minimum number of pixels
339
355
  }
340
356
  },
341
357
  name: 'selection',
@@ -0,0 +1,138 @@
1
+ /*!
2
+ * Slider for Bootstrap
3
+ *
4
+ * Copyright 2012 Stefan Petre
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ */
9
+ .slider {
10
+ display: inline-block;
11
+ vertical-align: middle;
12
+ position: relative;
13
+ }
14
+ .slider.slider-horizontal {
15
+ width: 210px;
16
+ height: 20px;
17
+ }
18
+ .slider.slider-horizontal .slider-track {
19
+ height: 10px;
20
+ width: 100%;
21
+ margin-top: -5px;
22
+ top: 50%;
23
+ left: 0;
24
+ }
25
+ .slider.slider-horizontal .slider-selection {
26
+ height: 100%;
27
+ top: 0;
28
+ bottom: 0;
29
+ }
30
+ .slider.slider-horizontal .slider-handle {
31
+ margin-left: -10px;
32
+ margin-top: -5px;
33
+ }
34
+ .slider.slider-horizontal .slider-handle.triangle {
35
+ border-width: 0 10px 10px 10px;
36
+ width: 0;
37
+ height: 0;
38
+ border-bottom-color: #0480be;
39
+ margin-top: 0;
40
+ }
41
+ .slider.slider-vertical {
42
+ height: 210px;
43
+ width: 20px;
44
+ }
45
+ .slider.slider-vertical .slider-track {
46
+ width: 10px;
47
+ height: 100%;
48
+ margin-left: -5px;
49
+ left: 50%;
50
+ top: 0;
51
+ }
52
+ .slider.slider-vertical .slider-selection {
53
+ width: 100%;
54
+ left: 0;
55
+ top: 0;
56
+ bottom: 0;
57
+ }
58
+ .slider.slider-vertical .slider-handle {
59
+ margin-left: -5px;
60
+ margin-top: -10px;
61
+ }
62
+ .slider.slider-vertical .slider-handle.triangle {
63
+ border-width: 10px 0 10px 10px;
64
+ width: 1px;
65
+ height: 1px;
66
+ border-left-color: #0480be;
67
+ margin-left: 0;
68
+ }
69
+ .slider input {
70
+ display: none;
71
+ }
72
+ .slider .tooltip-inner {
73
+ white-space: nowrap;
74
+ }
75
+ .slider-track {
76
+ position: absolute;
77
+ cursor: pointer;
78
+ background-color: #f7f7f7;
79
+ background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
80
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
81
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
82
+ background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
83
+ background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
84
+ background-repeat: repeat-x;
85
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
86
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
87
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
88
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
89
+ -webkit-border-radius: 4px;
90
+ -moz-border-radius: 4px;
91
+ border-radius: 4px;
92
+ }
93
+ .slider-selection {
94
+ position: absolute;
95
+ background-color: #f7f7f7;
96
+ background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
97
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
98
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
99
+ background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
100
+ background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
101
+ background-repeat: repeat-x;
102
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
103
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
104
+ -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
105
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
106
+ -webkit-box-sizing: border-box;
107
+ -moz-box-sizing: border-box;
108
+ box-sizing: border-box;
109
+ -webkit-border-radius: 4px;
110
+ -moz-border-radius: 4px;
111
+ border-radius: 4px;
112
+ }
113
+ .slider-handle {
114
+ position: absolute;
115
+ width: 20px;
116
+ height: 20px;
117
+ background-color: #0e90d2;
118
+ background-image: -moz-linear-gradient(top, #149bdf, #0480be);
119
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
120
+ background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
121
+ background-image: -o-linear-gradient(top, #149bdf, #0480be);
122
+ background-image: linear-gradient(to bottom, #149bdf, #0480be);
123
+ background-repeat: repeat-x;
124
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
125
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
126
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
127
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
128
+ opacity: 0.8;
129
+ border: 0px solid transparent;
130
+ }
131
+ .slider-handle.round {
132
+ -webkit-border-radius: 20px;
133
+ -moz-border-radius: 20px;
134
+ border-radius: 20px;
135
+ }
136
+ .slider-handle.triangle {
137
+ background: transparent none;
138
+ }
metadata CHANGED
@@ -1,217 +1,179 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight_range_limit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 5.0.0
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Jonathan Rochkind
9
+ - Chris Beer
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2018-06-20 00:00:00.000000000 Z
13
+ date: 2014-02-11 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: rails
15
17
  requirement: !ruby/object:Gem::Requirement
18
+ none: false
16
19
  requirements:
17
- - - ">="
20
+ - - ! '>='
18
21
  - !ruby/object:Gem::Version
19
22
  version: '3.0'
20
- - - "<"
23
+ - - <
21
24
  - !ruby/object:Gem::Version
22
25
  version: '5.0'
23
26
  type: :runtime
24
27
  prerelease: false
25
28
  version_requirements: !ruby/object:Gem::Requirement
29
+ none: false
26
30
  requirements:
27
- - - ">="
31
+ - - ! '>='
28
32
  - !ruby/object:Gem::Version
29
33
  version: '3.0'
30
- - - "<"
34
+ - - <
31
35
  - !ruby/object:Gem::Version
32
36
  version: '5.0'
33
37
  - !ruby/object:Gem::Dependency
34
38
  name: jquery-rails
35
39
  requirement: !ruby/object:Gem::Requirement
40
+ none: false
36
41
  requirements:
37
- - - ">="
42
+ - - ! '>='
38
43
  - !ruby/object:Gem::Version
39
44
  version: '0'
40
45
  type: :runtime
41
46
  prerelease: false
42
47
  version_requirements: !ruby/object:Gem::Requirement
48
+ none: false
43
49
  requirements:
44
- - - ">="
50
+ - - ! '>='
45
51
  - !ruby/object:Gem::Version
46
52
  version: '0'
47
53
  - !ruby/object:Gem::Dependency
48
54
  name: blacklight
49
55
  requirement: !ruby/object:Gem::Requirement
56
+ none: false
50
57
  requirements:
51
- - - "~>"
58
+ - - ! '>='
52
59
  - !ruby/object:Gem::Version
53
- version: '4.0'
60
+ version: 5.0.0.pre4
61
+ - - <
62
+ - !ruby/object:Gem::Version
63
+ version: '6'
54
64
  type: :runtime
55
65
  prerelease: false
56
66
  version_requirements: !ruby/object:Gem::Requirement
67
+ none: false
57
68
  requirements:
58
- - - "~>"
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: 5.0.0.pre4
72
+ - - <
59
73
  - !ruby/object:Gem::Version
60
- version: '4.0'
74
+ version: '6'
61
75
  - !ruby/object:Gem::Dependency
62
76
  name: rspec
63
77
  requirement: !ruby/object:Gem::Requirement
78
+ none: false
64
79
  requirements:
65
- - - "~>"
80
+ - - ! '>='
66
81
  - !ruby/object:Gem::Version
67
- version: '3.0'
82
+ version: '2.0'
68
83
  type: :development
69
84
  prerelease: false
70
85
  version_requirements: !ruby/object:Gem::Requirement
86
+ none: false
71
87
  requirements:
72
- - - "~>"
88
+ - - ! '>='
73
89
  - !ruby/object:Gem::Version
74
- version: '3.0'
90
+ version: '2.0'
75
91
  - !ruby/object:Gem::Dependency
76
92
  name: rspec-rails
77
93
  requirement: !ruby/object:Gem::Requirement
94
+ none: false
78
95
  requirements:
79
- - - ">="
96
+ - - ! '>='
80
97
  - !ruby/object:Gem::Version
81
98
  version: '0'
82
99
  type: :development
83
100
  prerelease: false
84
101
  version_requirements: !ruby/object:Gem::Requirement
102
+ none: false
85
103
  requirements:
86
- - - ">="
104
+ - - ! '>='
87
105
  - !ruby/object:Gem::Version
88
106
  version: '0'
89
107
  - !ruby/object:Gem::Dependency
90
108
  name: capybara
91
109
  requirement: !ruby/object:Gem::Requirement
110
+ none: false
92
111
  requirements:
93
- - - ">="
112
+ - - ! '>='
94
113
  - !ruby/object:Gem::Version
95
114
  version: '0'
96
115
  type: :development
97
116
  prerelease: false
98
117
  version_requirements: !ruby/object:Gem::Requirement
118
+ none: false
99
119
  requirements:
100
- - - ">="
120
+ - - ! '>='
101
121
  - !ruby/object:Gem::Version
102
122
  version: '0'
103
123
  - !ruby/object:Gem::Dependency
104
124
  name: sqlite3
105
125
  requirement: !ruby/object:Gem::Requirement
126
+ none: false
106
127
  requirements:
107
- - - ">="
128
+ - - ! '>='
108
129
  - !ruby/object:Gem::Version
109
130
  version: '0'
110
131
  type: :development
111
132
  prerelease: false
112
133
  version_requirements: !ruby/object:Gem::Requirement
134
+ none: false
113
135
  requirements:
114
- - - ">="
136
+ - - ! '>='
115
137
  - !ruby/object:Gem::Version
116
138
  version: '0'
117
139
  - !ruby/object:Gem::Dependency
118
140
  name: launchy
119
141
  requirement: !ruby/object:Gem::Requirement
142
+ none: false
120
143
  requirements:
121
- - - ">="
144
+ - - ! '>='
122
145
  - !ruby/object:Gem::Version
123
146
  version: '0'
124
147
  type: :development
125
148
  prerelease: false
126
149
  version_requirements: !ruby/object:Gem::Requirement
150
+ none: false
127
151
  requirements:
128
- - - ">="
152
+ - - ! '>='
129
153
  - !ruby/object:Gem::Version
130
154
  version: '0'
131
155
  - !ruby/object:Gem::Dependency
132
156
  name: jettywrapper
133
157
  requirement: !ruby/object:Gem::Requirement
158
+ none: false
134
159
  requirements:
135
- - - ">="
136
- - !ruby/object:Gem::Version
137
- version: '0'
138
- type: :development
139
- prerelease: false
140
- version_requirements: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - ">="
160
+ - - ~>
143
161
  - !ruby/object:Gem::Version
144
- version: '0'
145
- - !ruby/object:Gem::Dependency
146
- name: engine_cart
147
- requirement: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
162
+ version: '1.5'
163
+ - - ! '>='
150
164
  - !ruby/object:Gem::Version
151
- version: '2.0'
165
+ version: 1.5.2
152
166
  type: :development
153
167
  prerelease: false
154
168
  version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
155
170
  requirements:
156
- - - "~>"
171
+ - - ~>
157
172
  - !ruby/object:Gem::Version
158
- version: '2.0'
159
- - !ruby/object:Gem::Dependency
160
- name: devise
161
- requirement: !ruby/object:Gem::Requirement
162
- requirements:
163
- - - ">="
173
+ version: '1.5'
174
+ - - ! '>='
164
175
  - !ruby/object:Gem::Version
165
- version: '0'
166
- type: :development
167
- prerelease: false
168
- version_requirements: !ruby/object:Gem::Requirement
169
- requirements:
170
- - - ">="
171
- - !ruby/object:Gem::Version
172
- version: '0'
173
- - !ruby/object:Gem::Dependency
174
- name: devise-guests
175
- requirement: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - ">="
178
- - !ruby/object:Gem::Version
179
- version: '0'
180
- type: :development
181
- prerelease: false
182
- version_requirements: !ruby/object:Gem::Requirement
183
- requirements:
184
- - - ">="
185
- - !ruby/object:Gem::Version
186
- version: '0'
187
- - !ruby/object:Gem::Dependency
188
- name: bootstrap-sass
189
- requirement: !ruby/object:Gem::Requirement
190
- requirements:
191
- - - ">="
192
- - !ruby/object:Gem::Version
193
- version: '0'
194
- type: :development
195
- prerelease: false
196
- version_requirements: !ruby/object:Gem::Requirement
197
- requirements:
198
- - - ">="
199
- - !ruby/object:Gem::Version
200
- version: '0'
201
- - !ruby/object:Gem::Dependency
202
- name: turbolinks
203
- requirement: !ruby/object:Gem::Requirement
204
- requirements:
205
- - - ">="
206
- - !ruby/object:Gem::Version
207
- version: '0'
208
- type: :development
209
- prerelease: false
210
- version_requirements: !ruby/object:Gem::Requirement
211
- requirements:
212
- - - ">="
213
- - !ruby/object:Gem::Version
214
- version: '0'
176
+ version: 1.5.2
215
177
  description:
216
178
  email:
217
179
  - blacklight-development@googlegroups.com
@@ -219,11 +181,10 @@ executables: []
219
181
  extensions: []
220
182
  extra_rdoc_files: []
221
183
  files:
222
- - ".gitignore"
223
- - ".rspec"
224
- - ".travis.yml"
184
+ - .gitignore
185
+ - .travis.yml
225
186
  - Gemfile
226
- - MIT-LICENSE
187
+ - LICENSE
227
188
  - README.rdoc
228
189
  - Rakefile
229
190
  - VERSION
@@ -249,38 +210,40 @@ files:
249
210
  - lib/blacklight_range_limit/view_helper_override.rb
250
211
  - lib/generators/blacklight_range_limit/assets_generator.rb
251
212
  - lib/generators/blacklight_range_limit/blacklight_range_limit_generator.rb
252
- - solr/sample_solr_documents.yml
253
213
  - spec/features/blacklight_range_limit_spec.rb
254
214
  - spec/spec_helper.rb
255
215
  - spec/test_app_templates/Gemfile.extra
256
216
  - spec/test_app_templates/lib/generators/test_app_generator.rb
257
217
  - spec/test_app_templates/lib/tasks/blacklight_test_app.rake
218
+ - vendor/assets/javascripts/bootstrap-slider.js
258
219
  - vendor/assets/javascripts/flot/excanvas.min.js
259
220
  - vendor/assets/javascripts/flot/jquery.flot.js
260
221
  - vendor/assets/javascripts/flot/jquery.flot.selection.js
261
- - vendor/assets/javascripts/jquery-ui-1.9.2.custom.js
262
- homepage: http://projectblacklight.org/
263
- licenses: []
264
- metadata: {}
222
+ - vendor/assets/stylesheets/slider.css
223
+ homepage: https://github.com/projectblacklight/blacklight_range_limit
224
+ licenses:
225
+ - Apache 2.0
265
226
  post_install_message:
266
227
  rdoc_options: []
267
228
  require_paths:
268
229
  - lib
269
230
  required_ruby_version: !ruby/object:Gem::Requirement
231
+ none: false
270
232
  requirements:
271
- - - ">="
233
+ - - ! '>='
272
234
  - !ruby/object:Gem::Version
273
235
  version: '0'
274
236
  required_rubygems_version: !ruby/object:Gem::Requirement
237
+ none: false
275
238
  requirements:
276
- - - ">="
239
+ - - ! '>='
277
240
  - !ruby/object:Gem::Version
278
241
  version: '0'
279
242
  requirements: []
280
- rubyforge_project: blacklight
281
- rubygems_version: 2.6.11
243
+ rubyforge_project:
244
+ rubygems_version: 1.8.23
282
245
  signing_key:
283
- specification_version: 4
246
+ specification_version: 3
284
247
  summary: Blacklight Range Limit plugin
285
248
  test_files:
286
249
  - spec/features/blacklight_range_limit_spec.rb
@@ -288,3 +251,4 @@ test_files:
288
251
  - spec/test_app_templates/Gemfile.extra
289
252
  - spec/test_app_templates/lib/generators/test_app_generator.rb
290
253
  - spec/test_app_templates/lib/tasks/blacklight_test_app.rake
254
+ has_rdoc: