will_paginate-bootstrap4 0.0.1 → 0.1.2

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: a44065ff1466edd61b1643db17a0a00aa1942ab0
4
- data.tar.gz: 78221261f5dde656580398a8ec66acdb6e48c1ec
3
+ metadata.gz: 9ac5bbc4bb333226f95df09a1278f91ffc7c9b00
4
+ data.tar.gz: e82a7d2fa7771a4cea05869fad13844af6e47feb
5
5
  SHA512:
6
- metadata.gz: 1522e5df1b842622c0bf48156f480b44d66e48d9852607c64bb1aeb621a938f85a8572282ccd1b072c836af6d9f553e19f18eb0cc26e0fddda98a33cc5c1d8a0
7
- data.tar.gz: 008c42d8e380af8607c4ba0ad4deec9f268ca753b19d108f0af926b54d70cd624bd49b657781e0819309fbf2c728e4848f77366ec675225e5aef059721107a55
6
+ metadata.gz: fd0ea7b04fcd7dc05f09be38f13ce9f98c1bfdf9fff5fed6a7ea48a4f1d9a029333113be30c80b6fd6aa684035992940a31b977617a40f11517f4304b3438c31
7
+ data.tar.gz: 833bb96900205e7332c5019b18a88f84886f75891b7810040ac9999faf64553797788c5b40b55f180a58c195b6a78ffd858f1035737a0f6957e878b3407a62a2
data/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+
2
+ Copyright (c) 2016 Ivan Palamarchuk
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
5
+ this software and associated documentation files (the "Software"), to deal in
6
+ the Software without restriction, including without limitation the rights to
7
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
+ the Software, and to permit persons to whom the Software is furnished to do so,
9
+ subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ## [Will Paginate][wp] link renderer styles for [Twitter Bootstrap 4][bs]
2
2
 
3
+ ![ex](https://cloud.githubusercontent.com/assets/2103263/18925649/74eeb836-85bd-11e6-9be1-593a076e684c.png)
4
+
3
5
  Rails Engine that extends [will_paginate][wp] stylings to match the pagination styling conventions
4
6
  in Twitter's [Bootstrap][bs] 4 toolkit.
5
7
 
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module WillPaginate
3
- VERSION = '0.0.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
@@ -6,15 +6,19 @@ Gem::Specification.new do |s|
6
6
  s.name = 'will_paginate-bootstrap4'
7
7
  s.version = Bootstrap::WillPaginate::VERSION
8
8
  s.authors = ['Ivan Palamarchuk']
9
- s.email = ['i.delef@gmail.com", "ikebowen@gmail.com']
9
+ s.email = 'i.delef@gmail.com'
10
10
  s.summary = %q{Format will_paginate html to match Twitter Bootstrap 4 styling.}
11
11
  s.description = %q{Hooks into will_paginate to format the html to match Twitter Bootstrap 4 styling.}
12
+ s.homepage = 'https://github.com/delef/will_paginate-bootstrap4'
13
+ s.license = 'MIT'
12
14
 
13
- s.rubyforge_project = 'will_paginate-bootstrap4'
15
+ s.required_ruby_version = '>= 1.9.2'
16
+ s.rubyforge_project = 'will_paginate-bootstrap4'
14
17
 
15
18
  s.files = `git ls-files`.split("\n")
16
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
20
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
21
  s.require_paths = ['lib']
19
- s.add_runtime_dependency 'will_paginate'
22
+
23
+ s.add_runtime_dependency 'will_paginate', '~> 3.0', '>= 3.0.9'
20
24
  end
metadata CHANGED
@@ -1,39 +1,45 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: will_paginate-bootstrap4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Palamarchuk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-28 00:00:00.000000000 Z
11
+ date: 2016-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: will_paginate
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
17
20
  - - ">="
18
21
  - !ruby/object:Gem::Version
19
- version: '0'
22
+ version: 3.0.9
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
24
30
  - - ">="
25
31
  - !ruby/object:Gem::Version
26
- version: '0'
32
+ version: 3.0.9
27
33
  description: Hooks into will_paginate to format the html to match Twitter Bootstrap
28
34
  4 styling.
29
- email:
30
- - i.delef@gmail.com", "ikebowen@gmail.com
35
+ email: i.delef@gmail.com
31
36
  executables: []
32
37
  extensions: []
33
38
  extra_rdoc_files: []
34
39
  files:
35
40
  - ".gitignore"
36
41
  - Gemfile
42
+ - LICENSE.md
37
43
  - MIT-LICENSE
38
44
  - README.md
39
45
  - Rakefile
@@ -41,8 +47,9 @@ files:
41
47
  - lib/will_paginate-bootstrap4.rb
42
48
  - lib/will_paginate-bootstrap4/version.rb
43
49
  - will_paginate-bootstrap4.gemspec
44
- homepage:
45
- licenses: []
50
+ homepage: https://github.com/delef/will_paginate-bootstrap4
51
+ licenses:
52
+ - MIT
46
53
  metadata: {}
47
54
  post_install_message:
48
55
  rdoc_options: []
@@ -52,7 +59,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
52
59
  requirements:
53
60
  - - ">="
54
61
  - !ruby/object:Gem::Version
55
- version: '0'
62
+ version: 1.9.2
56
63
  required_rubygems_version: !ruby/object:Gem::Requirement
57
64
  requirements:
58
65
  - - ">="