smart_pagination 0.2.5 → 0.2.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 00e6fccac0756e19a50a2b3f358ada4f1f9869dd
4
- data.tar.gz: d075f233e1aedc7e3b559a7fac659772be8ce9c5
2
+ SHA256:
3
+ metadata.gz: 3914632522e00ca6ba04328501f0ee2b3640075e5f741935923263870db9f3c0
4
+ data.tar.gz: b49c5a85f4e2d0bc2e17631ce742face1b0d8229d6a627723fc30f180a0fed98
5
5
  SHA512:
6
- metadata.gz: 5ece1130297f2a3590e8db2ff865b7df588ae12dd8c83d8ab044bd76ed16afb972f05a867e5f477571c1fb5a544ad40ff97b10792612314f2346e88da64d6be6
7
- data.tar.gz: aea6aeb5174753f27674b369a5a7c7f6d2ca8201ca7815227849e7756fa8f8fee3ef1793d7569441e1bed768ce8554c9e13cf6a8b8a48bff96ed32310abdbc22
6
+ metadata.gz: 9674a59d5b985baec207bb8176666a32e0882583d54561d69f38cbeaf81de0693e5303ff21f8341778d0b9c45fba2f2b31937c2f21447f8e42f4e0319a3d6c0c
7
+ data.tar.gz: a94144d2bf68180725da5c73190bcd68a2ddb05316adab489661cee0371497f66c0427a36deb1bf7ab438683178b462c25a3202eee3986a07b2cc6b7085c1c1a
data/Gemfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ smart_pagination (0.1.0)
5
+ actionview (>= 4.0.0, < 5.2)
6
+ smart_paginate (~> 0.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionview (5.1.1)
12
+ activesupport (= 5.1.1)
13
+ builder (~> 3.1)
14
+ erubi (~> 1.4)
15
+ rails-dom-testing (~> 2.0)
16
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
17
+ activemodel (5.1.1)
18
+ activesupport (= 5.1.1)
19
+ activerecord (5.1.1)
20
+ activemodel (= 5.1.1)
21
+ activesupport (= 5.1.1)
22
+ arel (~> 8.0)
23
+ activesupport (5.1.1)
24
+ concurrent-ruby (~> 1.0, >= 1.0.2)
25
+ i18n (~> 0.7)
26
+ minitest (~> 5.1)
27
+ tzinfo (~> 1.1)
28
+ arel (8.0.0)
29
+ builder (3.2.3)
30
+ concurrent-ruby (1.0.5)
31
+ erubi (1.6.0)
32
+ i18n (0.8.4)
33
+ loofah (2.0.3)
34
+ nokogiri (>= 1.5.9)
35
+ mini_portile2 (2.1.0)
36
+ minitest (5.10.2)
37
+ nokogiri (1.7.2)
38
+ mini_portile2 (~> 2.1.0)
39
+ rails-dom-testing (2.0.3)
40
+ activesupport (>= 4.2.0)
41
+ nokogiri (>= 1.6)
42
+ rails-html-sanitizer (1.0.3)
43
+ loofah (~> 2.0)
44
+ rake (10.5.0)
45
+ smart_paginate (0.2.0)
46
+ activerecord (>= 4.0.0, < 5.2)
47
+ thread_safe (0.3.6)
48
+ tzinfo (1.2.3)
49
+ thread_safe (~> 0.1)
50
+
51
+ PLATFORMS
52
+ ruby
53
+
54
+ DEPENDENCIES
55
+ bundler (~> 1.14)
56
+ minitest (~> 5.0)
57
+ rake (~> 10.0)
58
+ smart_pagination!
59
+
60
+ BUNDLED WITH
61
+ 1.14.6
@@ -1,3 +1,3 @@
1
1
  module SmartPagination
2
- VERSION = '0.2.5'
2
+ VERSION = '0.2.6'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_pagination
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonian Guveli
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-07 00:00:00.000000000 Z
11
+ date: 2018-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: smart_paginate
@@ -28,22 +28,16 @@ dependencies:
28
28
  name: actionview
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 4.0.0
34
- - - "<"
31
+ - - "~>"
35
32
  - !ruby/object:Gem::Version
36
- version: '5.2'
33
+ version: '5.0'
37
34
  type: :runtime
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
40
37
  requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: 4.0.0
44
- - - "<"
38
+ - - "~>"
45
39
  - !ruby/object:Gem::Version
46
- version: '5.2'
40
+ version: '5.0'
47
41
  - !ruby/object:Gem::Dependency
48
42
  name: bundler
49
43
  requirement: !ruby/object:Gem::Requirement
@@ -96,6 +90,7 @@ extra_rdoc_files: []
96
90
  files:
97
91
  - CODE_OF_CONDUCT.md
98
92
  - Gemfile
93
+ - Gemfile.lock
99
94
  - LICENSE.txt
100
95
  - README.md
101
96
  - Rakefile
@@ -123,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
118
  version: '0'
124
119
  requirements: []
125
120
  rubyforge_project:
126
- rubygems_version: 2.6.13
121
+ rubygems_version: 2.7.6
127
122
  signing_key:
128
123
  specification_version: 4
129
124
  summary: View helpers for SmartPaginate