will_paginate-foundation 0.2 → 0.3.1
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.
- checksums.yaml +8 -8
- data/README.markdown +10 -0
- data/lib/foundation_pagination/foundation_renderer.rb +1 -1
- data/lib/foundation_pagination/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZmM4NGU1NTczZDZlMTM5ZGQwNWVmN2JhYTM0Y2U5ZDgyYWExNTUzNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTBkOGUyZTU4ZTFjMGIwMTllYjc1Y2Y4OWZlNjNkNzUwYzBhODU1Yw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YTcwMGM3MWU3MjRhNDQ5YmZiMTZkNDY3NmM3MTc5NDczOTI2Mjc2MjVmOTk4
|
|
10
|
+
ZjNkYTZhMzAzZjIwZTg5MTI0ZjMwZjU5Y2JhNjdlY2FjNjAxODdlOTFkMDcz
|
|
11
|
+
MTEyNzI0NGNiNWFkN2UxMTIwY2Q0NWUwMmRkNTY1ZTVmODFmMTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ODA1MDNlZGNjYWIyNzc4N2VlMmZlYzQ0YjczYzQ3NTk1MGU3NmFiNmNkYzdj
|
|
14
|
+
ZTJmNDM1MTlkMjk0OWFmMTk4ZGFlNmNlNTRkZDJiNTBhYjJjYTQwNmQ1OWU1
|
|
15
|
+
NzNhNWI4OGYxZDAxZTA5YTgzYTM4YzBmYzI4OTkxYzNkMjliM2Y=
|
data/README.markdown
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# will_paginate-foundation
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/will_paginate-foundation)
|
|
4
|
+
|
|
3
5
|

|
|
4
6
|
|
|
5
7
|
This gem integrates the [Foundation](http://foundation.zurb.com) [pagination component](http://foundation.zurb.com/docs/components/pagination.html) with the [will_paginate](https://github.com/mislav/will_paginate) pagination gem.
|
|
@@ -41,6 +43,14 @@ Contributing
|
|
|
41
43
|
5. Open a [Pull Request][1]
|
|
42
44
|
6. Enjoy a refreshing 'Insert Favorite Beverage' and wait
|
|
43
45
|
|
|
46
|
+
### Special Thanks
|
|
47
|
+
|
|
48
|
+
This gem code was based on https://github.com/nickpad/will_paginate-bootstrap
|
|
49
|
+
|
|
44
50
|
License
|
|
45
51
|
------------
|
|
46
52
|
The MIT License (MIT)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
[](https://bitdeli.com/free "Bitdeli Badge")
|
|
56
|
+
|
|
@@ -15,7 +15,7 @@ module FoundationPagination
|
|
|
15
15
|
end.join(@options[:link_separator])
|
|
16
16
|
|
|
17
17
|
if @options[:foundation].to_i >= 3
|
|
18
|
-
tag("ul", list_items, class: "pagination")
|
|
18
|
+
tag("ul", list_items, class: "pagination #{@options[:class]}")
|
|
19
19
|
else
|
|
20
20
|
html_container(tag("ul", list_items))
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: will_paginate-foundation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrian Rangel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: will_paginate
|