will_paginate-bootstrap 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e9399da225d7a96f5a677137192f66b6d7b4214
|
4
|
+
data.tar.gz: 33c04e3d6f8a32e6342c0d150f4aa4df39d3bf05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c9d8af213585fc0122bb8f5bbbac992e1efd015575a2ad2a1e0303169e9b64d97ef62be917041cf7f37751bd1ea165056da9b7084570e384ae015e22ad7c944
|
7
|
+
data.tar.gz: 1f9cba0d7e53099bccc985c46035edb9f23dfab1850043ce421e2014df7a8fb39905d52c9a3447876e94c70a88ef374cda27a7e91c1574fb706782d1ec13866f
|
data/README.markdown
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# will_paginate-bootstrap
|
2
2
|
|
3
|
-
[![Code Climate](https://codeclimate.com/github/
|
3
|
+
[![Code Climate](https://codeclimate.com/github/bootstrap-ruby/will_paginate-bootstrap.png)](https://codeclimate.com/github/bootstrap-ruby/will_paginate-bootstrap)
|
4
4
|
|
5
|
-
![Bootstrap Pagination Component](https://raw.github.com/
|
5
|
+
![Bootstrap Pagination Component](https://raw.github.com/bootstrap-ruby/will_paginate-bootstrap/master/pagination.png)
|
6
6
|
|
7
7
|
This gem integrates the [Twitter Bootstrap](http://twitter.github.com/bootstrap/) [pagination component](http://twitter.github.com/bootstrap/components.html#pagination) with the [will_paginate](https://github.com/mislav/will_paginate) pagination gem.
|
8
8
|
|
@@ -52,3 +52,5 @@ Starting at version 1.0, this gem no longer supports Bootstrap 2.
|
|
52
52
|
<td>>= 3.0.0</td>
|
53
53
|
</tr>
|
54
54
|
</table>
|
55
|
+
|
56
|
+
Bootstrap 2 users can use version `0.2.5` of the gem which was the last version to offer Bootstrap 2 support.
|
data/spec/pagination_spec.rb
CHANGED
@@ -65,14 +65,35 @@ describe "Bootstrap Renderer" do
|
|
65
65
|
html.css('[rel~=next]').size.must_equal 2
|
66
66
|
end
|
67
67
|
|
68
|
-
it "has an anchor within each non-active list item" do
|
69
|
-
html.css('ul li:not(.active)').each { |li| li.at_css('a').wont_be_nil }
|
68
|
+
it "has an anchor within each non-active/non-disabled list item" do
|
69
|
+
html.css('ul li:not(.active):not(.disabled)').each { |li| li.at_css('a').wont_be_nil }
|
70
70
|
end
|
71
71
|
|
72
72
|
it "uses a span element for the active page" do
|
73
73
|
html.at_css('ul li.active span').wont_be_nil
|
74
74
|
end
|
75
75
|
|
76
|
+
it 'uses a span to wrap the ellipsis' do
|
77
|
+
ellipsis = BootstrapPagination::BootstrapRenderer::ELLIPSIS
|
78
|
+
html.at_css('li.disabled span', text: ellipsis).wont_be_nil
|
79
|
+
end
|
80
|
+
|
81
|
+
describe 'when on the first page' do
|
82
|
+
let(:page) { 1 }
|
83
|
+
|
84
|
+
it 'uses a span element for the (disabled) previous button' do
|
85
|
+
html.at_css('li.disabled span', text: 'Previous Label').wont_be_nil
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe 'when on the last page' do
|
90
|
+
let(:page) { collection_size }
|
91
|
+
|
92
|
+
it 'uses a span element for the (disabled) next button' do
|
93
|
+
html.at_css('li.disabled span', text: 'Next Label').wont_be_nil
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
76
97
|
it "has no outer pagination div" do
|
77
98
|
html.at_css('div.pagination').must_be_nil
|
78
99
|
end
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = BootstrapPagination::VERSION
|
8
8
|
s.authors = ["Nick Dainty"]
|
9
9
|
s.email = ["nick@npad.co.uk"]
|
10
|
-
s.homepage = "https://github.com/
|
10
|
+
s.homepage = "https://github.com/bootstrap-ruby/will_paginate-bootstrap"
|
11
11
|
s.summary = %q{Integrates the Twitter Bootstrap pagination component with will_paginate}
|
12
12
|
s.description = %q{This gem integrates the Twitter Bootstrap pagination component with the will_paginate pagination gem. Supports Rails and Sinatra.}
|
13
13
|
s.license = "MIT"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: will_paginate-bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Dainty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: will_paginate
|
@@ -47,7 +47,7 @@ files:
|
|
47
47
|
- pagination.png
|
48
48
|
- spec/pagination_spec.rb
|
49
49
|
- will_paginate-bootstrap.gemspec
|
50
|
-
homepage: https://github.com/
|
50
|
+
homepage: https://github.com/bootstrap-ruby/will_paginate-bootstrap
|
51
51
|
licenses:
|
52
52
|
- MIT
|
53
53
|
metadata: {}
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
69
|
rubyforge_project: will_paginate-bootstrap
|
70
|
-
rubygems_version: 2.
|
70
|
+
rubygems_version: 2.2.2
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: Integrates the Twitter Bootstrap pagination component with will_paginate
|