bootstrap-will_paginate 0.0.10 → 0.0.11

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: 623783f4986f3ba36c057b4ebb401fc784fcc36d
4
- data.tar.gz: c5d4f936d341455a2b22f32650a2af266be50b42
3
+ metadata.gz: ca23fd6ae78773ece210a0b334096bc63e317a13
4
+ data.tar.gz: 2a7773a2c7923ea9617f7825b3a554191b3b00a5
5
5
  SHA512:
6
- metadata.gz: 68610f5a2567aeeefd21a8afcc769e74fad9945142cae0bde590a47b8ef2f9e88fd86d14860ca9862a2ff284fe550f66753bc94807c0f145825dbf5205b1cd61
7
- data.tar.gz: 75340f3bc80465bfc054b5483d756217243e71602d48861fc236ad028e56c4200b27170365062f9864ee6f4977f0d69f89a3d98f215fb21bd3e6a974d62843a2
6
+ metadata.gz: 06343c8f11f2c62e1278d6381522fef98862b45f8c80cd20aae74b0878306c5a23868d0aa2e4c7159a35e414c8a2c5ad18ef96f52f6b4f9cdfa0ec4a1392e807
7
+ data.tar.gz: 64e8a3855ec0abd4ba52ac861d80471b76ba9e54594d78030569cae069a2ece0689bb44d8f445b1c1d37d34d1ae1d9c8559fd2fee1ac8b4e41355fa415af8669
@@ -1,20 +1,19 @@
1
1
  ## [Will Paginate][wp] link renderer styles for [Twitter Bootstrap][bs]
2
2
 
3
- Rails Engine that extends [will_paginate][wp] stylings to match the pagination styling conventions
3
+ Rails Engine that extends [will_paginate][wp] stylings to match the pagination styling conventions
4
4
  in Twitter's [Bootstrap][bs] toolkit.
5
5
 
6
6
  The real hard work done on the renderer initializer was written by [Isaac Bowen][is].
7
7
 
8
+ ### Demo picture
9
+
10
+ ![Demo of boostrap-will_paginate](boostrap-will_paginate.png)
11
+
8
12
  ### Installation
9
13
 
10
- Add to your Gemfile:
11
-
12
- gem 'bootstrap-will_paginate'
13
-
14
- If you need support for Bootstrap 3.0.0, the changes have been [merged][b30] into the
15
- master branch but not released to Rubygems. Add to your Gemfile like so:
14
+ Add to your Gemfile:
16
15
 
17
- gem 'bootstrap-will_paginate', :git => 'git://github.com/yrgoldteeth/bootstrap-will_paginate.git'
16
+ gem 'bootstrap-will_paginate'
18
17
 
19
18
  ### Usage
20
19
 
@@ -24,9 +23,8 @@ pass an option like so:
24
23
  <%= will_paginate(@things, :renderer => WillPaginate::ActionView::LinkRenderer) %>
25
24
 
26
25
 
27
- Copyright (c) 2012 [Nicholas Fine](http://ndfine.com), [Isaac Bowen](http://isaacbowen.com) released under the MIT license
26
+ Copyright (c) 2017 [Nicholas Fine](https://twitter.com/yrgoldteeth), [Isaac Bowen](http://isaacbowen.com) released under the MIT license
28
27
 
29
- [wp]: http://github.com/mislav/will_paginate
30
- [bs]: http://twitter.github.com/bootstrap
28
+ [wp]: https://github.com/mislav/will_paginate
29
+ [bs]: http://getbootstrap.com/
31
30
  [is]: https://gist.github.com/1182136
32
- [b30]: https://github.com/yrgoldteeth/bootstrap-will_paginate/pull/10
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  s.name = "bootstrap-will_paginate"
7
7
  s.version = Bootstrap::Willpaginate::VERSION
8
8
  s.authors = ["Nicholas Fine", "Isaac Bowen"]
9
- s.email = ["nicholas.fine@gmail.com", "ikebowen@gmail.com"]
10
- s.homepage = "http://ndfine.com/2011/12/17/twitter-bootstrap-will-paginate.html"
9
+ s.email = ["nick@ndfine.com", "ikebowen@gmail.com"]
10
+ s.homepage = "https://github.com/yrgoldteeth/bootstrap-will_paginate"
11
11
  s.summary = %q{Format will_paginate html to match Twitter Bootstrap styling.}
12
12
  s.description = %q{Hooks into will_paginate to format the html to match Twitter Bootstrap styling. Extension code was originally written by Isaac Bowen (https://gist.github.com/1182136).}
13
13
 
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module Willpaginate
3
- VERSION = "0.0.10"
3
+ VERSION = "0.0.11"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-will_paginate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Fine
@@ -9,41 +9,42 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-16 00:00:00.000000000 Z
12
+ date: 2017-03-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: will_paginate
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - '>='
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
20
  version: '0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - '>='
25
+ - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0'
28
28
  description: Hooks into will_paginate to format the html to match Twitter Bootstrap
29
29
  styling. Extension code was originally written by Isaac Bowen (https://gist.github.com/1182136).
30
30
  email:
31
- - nicholas.fine@gmail.com
31
+ - nick@ndfine.com
32
32
  - ikebowen@gmail.com
33
33
  executables: []
34
34
  extensions: []
35
35
  extra_rdoc_files: []
36
36
  files:
37
- - .gitignore
37
+ - ".gitignore"
38
38
  - Gemfile
39
39
  - MIT-LICENSE
40
40
  - README.markdown
41
41
  - Rakefile
42
+ - boostrap-will_paginate.png
42
43
  - bootstrap-will_paginate.gemspec
43
44
  - config/initializers/will_paginate.rb
44
45
  - lib/bootstrap-will_paginate.rb
45
46
  - lib/bootstrap-will_paginate/version.rb
46
- homepage: http://ndfine.com/2011/12/17/twitter-bootstrap-will-paginate.html
47
+ homepage: https://github.com/yrgoldteeth/bootstrap-will_paginate
47
48
  licenses: []
48
49
  metadata: {}
49
50
  post_install_message:
@@ -52,17 +53,17 @@ require_paths:
52
53
  - lib
53
54
  required_ruby_version: !ruby/object:Gem::Requirement
54
55
  requirements:
55
- - - '>='
56
+ - - ">="
56
57
  - !ruby/object:Gem::Version
57
58
  version: '0'
58
59
  required_rubygems_version: !ruby/object:Gem::Requirement
59
60
  requirements:
60
- - - '>='
61
+ - - ">="
61
62
  - !ruby/object:Gem::Version
62
63
  version: '0'
63
64
  requirements: []
64
65
  rubyforge_project: bootstrap-will_paginate
65
- rubygems_version: 2.0.3
66
+ rubygems_version: 2.5.2
66
67
  signing_key:
67
68
  specification_version: 4
68
69
  summary: Format will_paginate html to match Twitter Bootstrap styling.