kaminari-actionview 1.0.0 → 1.2.1

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
- SHA1:
3
- metadata.gz: f75c4c21b8a6fc5c43236f3998e925404ad1502b
4
- data.tar.gz: 2e5776864badaffb09e71928669017194f900eac
2
+ SHA256:
3
+ metadata.gz: c49d3b9b8bbd87a18b2866758aecae41e477dda1adf5c61affbce0be11152964
4
+ data.tar.gz: 141853c32358ea0047f382ff5e815f11b57bdbffd5b9d556f538c3ab766eabdf
5
5
  SHA512:
6
- metadata.gz: e3c5f66aa34f9d9a08fa551510d90578f28f344520d2fc1e92bc4198911342805c60938cb8fac8a63e3e46ff6d061d78be55da1036bd3c23ec0a01cda77de200
7
- data.tar.gz: 865049bae2115923a82396cff80458132e261cfe42029ba162fba69e76224887bd1c57310bd0d6f05091d58d223911bfee8f5e234c409c154562528c55d130a4
6
+ metadata.gz: a78f05d8bece83046debaf748a7d1316931d335e3698df361eee3f7a648a8f3baea56f52c9933997d0ee7436577a02f9dddff358beb26732d46adc849a515f72
7
+ data.tar.gz: 43a4c912c76bdae200f55000a22335b166723b9032a09b4cad0e6c258282cba799050410286f7f5f64a8a653984ac0495ccb1ee0936b2fb6119cd7c57a4f42b1
@@ -0,0 +1 @@
1
+ See https://github.com/kaminari/kaminari/tree/master/CHANGELOG.md for changes.
data/README.md CHANGED
@@ -20,7 +20,7 @@ This gem is basically an internal gem that will be automatically bundled from ka
20
20
 
21
21
  Or if you're using web frameworks other than Rails + Action View, you might need to explicitly bundle this gem.
22
22
 
23
- See [Kaminari README (Other Framework/Library Support)](https://github.com/amatsuda/kaminari/blob/master/README.md#other-frameworklibrary-support) for details.
23
+ See [Kaminari README (Other Framework/Library Support)](https://github.com/kaminari/kaminari/blob/master/README.md#other-frameworklibrary-support) for details.
24
24
 
25
25
 
26
26
  ## Contributing
@@ -1,5 +1,5 @@
1
- # coding: utf-8
2
1
  # frozen_string_literal: true
2
+
3
3
  lib = File.expand_path('../lib', __FILE__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'kaminari/actionview/version'
@@ -12,8 +12,9 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = 'Kaminari Action View adapter'
14
14
  spec.description = 'kaminari-actionview provides pagination helpers for your Action View templates'
15
- spec.homepage = 'https://github.com/amatsuda/kaminari'
15
+ spec.homepage = 'https://github.com/kaminari/kaminari'
16
16
  spec.license = "MIT"
17
+ spec.required_ruby_version = '>= 2.0.0'
17
18
 
18
19
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
20
  spec.require_paths = ["lib"]
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require "kaminari/actionview/version"
3
4
  require 'active_support/lazy_load_hooks'
4
5
 
@@ -1,8 +1,10 @@
1
1
  # frozen_string_literal: true
2
- require 'action_view'
2
+
3
3
  require 'action_view/log_subscriber'
4
4
  require 'action_view/context'
5
5
 
6
+ require 'kaminari/helpers/paginator'
7
+
6
8
  module Kaminari
7
9
  # = Helpers
8
10
  module ActionViewExtension
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Kaminari
3
4
  module Actionview
4
- VERSION = '1.0.0'
5
+ VERSION = '1.2.1'
5
6
  end
6
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaminari-actionview
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akira Matsuda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-10 00:00:00.000000000 Z
11
+ date: 2020-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kaminari-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 1.0.0
19
+ version: 1.2.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 1.0.0
26
+ version: 1.2.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionview
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -74,13 +74,14 @@ executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
+ - CHANGELOG.md
77
78
  - MIT-LICENSE
78
79
  - README.md
79
80
  - kaminari-actionview.gemspec
80
81
  - lib/kaminari/actionview.rb
81
82
  - lib/kaminari/actionview/action_view_extension.rb
82
83
  - lib/kaminari/actionview/version.rb
83
- homepage: https://github.com/amatsuda/kaminari
84
+ homepage: https://github.com/kaminari/kaminari
84
85
  licenses:
85
86
  - MIT
86
87
  metadata: {}
@@ -92,15 +93,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
93
  requirements:
93
94
  - - ">="
94
95
  - !ruby/object:Gem::Version
95
- version: '0'
96
+ version: 2.0.0
96
97
  required_rubygems_version: !ruby/object:Gem::Requirement
97
98
  requirements:
98
99
  - - ">="
99
100
  - !ruby/object:Gem::Version
100
101
  version: '0'
101
102
  requirements: []
102
- rubyforge_project:
103
- rubygems_version: 2.6.8
103
+ rubygems_version: 3.2.0.pre1
104
104
  signing_key:
105
105
  specification_version: 4
106
106
  summary: Kaminari Action View adapter