bootstrap-will_paginate 0.0.1 → 0.0.2

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/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .bundle
3
3
  Gemfile.lock
4
4
  pkg/*
5
+ *.swp
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Nicholas Fine
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.markdown CHANGED
@@ -8,10 +8,12 @@ The real hard work done on the renderer initializer was written by [Isaac Bowen]
8
8
  ## Installation
9
9
 
10
10
  Add to your Gemfile:
11
+
11
12
  gem 'bootstrap-will_paginate'
12
13
 
13
14
 
15
+ Copyright (c) 2011 [Nicholas Fine](http://ndfine.com), [Isaac Bowen](http://isaacbowen.com) released under the MIT license
14
16
 
15
17
  [wp]: http://github.com/mislav/will_paginate
16
18
  [bs]: http://twitter.github.com/bootstrap
17
- [is]: http://isaacbowen.com/blog/using-will_paginate-action_view-and-bootstrap
19
+ [is]: https://gist.github.com/1182136
@@ -5,11 +5,11 @@ require "bootstrap-will_paginate/version"
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "bootstrap-will_paginate"
7
7
  s.version = Bootstrap::Willpaginate::VERSION
8
- s.authors = ["Nicholas Fine"]
9
- s.email = ["nicholas.fine@gmail.com"]
10
- s.homepage = ""
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"
11
11
  s.summary = %q{Format will_paginate html to match Twitter Bootstrap styling.}
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 (http://isaacbowen.com/blog/using-will_paginate-action_view-and-bootstrap).}
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
 
14
14
  s.rubyforge_project = "bootstrap-will_paginate"
15
15
 
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module Willpaginate
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,65 +1,91 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-will_paginate
3
- version: !ruby/object:Gem::Version
4
- version: 0.0.1
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
5
  prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Nicholas Fine
14
+ - Isaac Bowen
9
15
  autorequire:
10
16
  bindir: bin
11
17
  cert_chain: []
12
- date: 2011-12-17 00:00:00.000000000Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
18
+
19
+ date: 2011-12-20 00:00:00 -06:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
15
23
  name: will_paginate
16
- requirement: &11584540 !ruby/object:Gem::Requirement
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
17
26
  none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 3
31
+ segments:
32
+ - 0
33
+ version: "0"
22
34
  type: :runtime
23
- prerelease: false
24
- version_requirements: *11584540
25
- description: Hooks into will_paginate to format the html to match Twitter Bootstrap
26
- styling. Extension code was originally written by Isaac Bowen (http://isaacbowen.com/blog/using-will_paginate-action_view-and-bootstrap).
27
- email:
35
+ version_requirements: *id001
36
+ description: 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).
37
+ email:
28
38
  - nicholas.fine@gmail.com
39
+ - ikebowen@gmail.com
29
40
  executables: []
41
+
30
42
  extensions: []
43
+
31
44
  extra_rdoc_files: []
32
- files:
45
+
46
+ files:
33
47
  - .gitignore
34
48
  - Gemfile
49
+ - MIT-LICENSE
35
50
  - README.markdown
36
51
  - Rakefile
37
52
  - bootstrap-will_paginate.gemspec
38
53
  - config/initializers/will_paginate.rb
39
54
  - lib/bootstrap-will_paginate.rb
40
55
  - lib/bootstrap-will_paginate/version.rb
41
- homepage: ''
56
+ has_rdoc: true
57
+ homepage: http://ndfine.com/2011/12/17/twitter-bootstrap-will-paginate.html
42
58
  licenses: []
59
+
43
60
  post_install_message:
44
61
  rdoc_options: []
45
- require_paths:
62
+
63
+ require_paths:
46
64
  - lib
47
- required_ruby_version: !ruby/object:Gem::Requirement
65
+ required_ruby_version: !ruby/object:Gem::Requirement
48
66
  none: false
49
- requirements:
50
- - - ! '>='
51
- - !ruby/object:Gem::Version
52
- version: '0'
53
- required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ hash: 3
71
+ segments:
72
+ - 0
73
+ version: "0"
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
75
  none: false
55
- requirements:
56
- - - ! '>='
57
- - !ruby/object:Gem::Version
58
- version: '0'
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ hash: 3
80
+ segments:
81
+ - 0
82
+ version: "0"
59
83
  requirements: []
84
+
60
85
  rubyforge_project: bootstrap-will_paginate
61
- rubygems_version: 1.8.6
86
+ rubygems_version: 1.4.2
62
87
  signing_key:
63
88
  specification_version: 3
64
89
  summary: Format will_paginate html to match Twitter Bootstrap styling.
65
90
  test_files: []
91
+