kaminari-jets 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/kaminari.gemspec +2 -2
- data/lib/kaminari/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01a5ab3d27731473dcb405cd072483ba7198c6e09571dc0c27896854ce53a616
|
4
|
+
data.tar.gz: 84274b3c6cdc5ec846359ed5487cf71c2dfc5357fbe6fcb8a2293fbe81b3b0ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c873e158d08d7a709040c3524b91d5c8da2c990203ee294405352b3416b29e24d6e3fb19bb75474da82dd0b7753fa0a7d673f697443ae6f48f1f350de044bf69
|
7
|
+
data.tar.gz: 2a6f3e0fab22c70efc40004eb8c7935ea31f0dc2673b40ad35760d78b3667fe7d1a8984a8e94f1484e8c07994c10442501a440f8efaf06bd5c47376ae3884da5
|
data/README.md
CHANGED
@@ -8,3 +8,14 @@ This gem simply makes kaminari compatible with Jets. It's a fork of [kaminari](h
|
|
8
8
|
* There is a separate fork version from the kaminari version.
|
9
9
|
* So the kaminari version is kept intact.
|
10
10
|
* If kaminari accepts these changes to the main gem then this gem will be retired.
|
11
|
+
|
12
|
+
## Publishing
|
13
|
+
|
14
|
+
Example:
|
15
|
+
|
16
|
+
git tag v0.2.0
|
17
|
+
rake build
|
18
|
+
gem push pkg/kaminari-jets-0.2.0.gem
|
19
|
+
gem push kaminari-core/pkg/kaminari-jets-core-0.2.0.gem
|
20
|
+
|
21
|
+
Note, we only push the gems that are needed for the fork to work.
|
data/kaminari.gemspec
CHANGED
@@ -5,7 +5,7 @@ require "kaminari/version"
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'kaminari-jets'
|
8
|
-
spec.version = Kaminari::FORK_VERSION
|
8
|
+
spec.version = Kaminari::FORK_VERSION # Kaminari::Core::FORK_VERSION not available here
|
9
9
|
spec.authors = ['Tung Nguyen']
|
10
10
|
spec.email = ['tongueroo@gmail.com']
|
11
11
|
# Keep original authors as comment. Give them credit but they're not maintaining this fork.
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.required_ruby_version = '>= 2.0.0'
|
23
23
|
|
24
24
|
spec.add_dependency 'activesupport', '>= 4.1.0'
|
25
|
-
spec.add_dependency 'kaminari-core', Kaminari::
|
25
|
+
spec.add_dependency 'kaminari-jets-core', Kaminari::FORK_VERSION
|
26
26
|
spec.add_dependency 'kaminari-actionview', Kaminari::VERSION
|
27
27
|
spec.add_dependency 'kaminari-activerecord', Kaminari::VERSION
|
28
28
|
|
data/lib/kaminari/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kaminari-jets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -25,19 +25,19 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 4.1.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name: kaminari-core
|
28
|
+
name: kaminari-jets-core
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 0.2.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 0.2.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: kaminari-actionview
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|