kaminari-actionview 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -0
- data/README.md +1 -1
- data/kaminari-actionview.gemspec +2 -1
- data/lib/kaminari/actionview/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3b3d3d9a3faee9ae7a54cdd8f9fc68e1fff23bf
|
4
|
+
data.tar.gz: 566ce4208abc99daafa730e35e906b3b3dbc8810
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 656d98d9f0ce891bc966dcbe81b7f4a91efcccc7f1eb1e58cd5eb9a642c32a3c52963c9331b5ba8fc01a721277de7588c4a17c73c3667dd4a8eaba9dc90f8d42
|
7
|
+
data.tar.gz: 37dc874680a55c07494161d24d1df795cef525a6a4cc8817d8e2b584a0577822223f09af0468c883bcd50409fb37a69c4e8b6c95da32fcc51b2660e1acf67523
|
data/CHANGELOG.md
ADDED
@@ -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/
|
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
|
data/kaminari-actionview.gemspec
CHANGED
@@ -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/
|
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"]
|
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.
|
4
|
+
version: 1.0.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-
|
11
|
+
date: 2017-01-19 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.
|
19
|
+
version: 1.0.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.
|
26
|
+
version: 1.0.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/
|
84
|
+
homepage: https://github.com/kaminari/kaminari
|
84
85
|
licenses:
|
85
86
|
- MIT
|
86
87
|
metadata: {}
|
@@ -92,7 +93,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
93
|
requirements:
|
93
94
|
- - ">="
|
94
95
|
- !ruby/object:Gem::Version
|
95
|
-
version:
|
96
|
+
version: 2.0.0
|
96
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
98
|
requirements:
|
98
99
|
- - ">="
|