type_balancer_rails 0.1.0 → 0.1.2
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 +4 -4
- data/README.md +3 -3
- data/lib/type_balancer/rails/version.rb +1 -1
- data/lib/type_balancer_rails.rb +2 -0
- data/type_balancer_rails.gemspec +2 -2
- metadata +17 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8cb44e1021bb6681468e80eb02a256ced78b07e7dfbe825075743f84041925a
|
4
|
+
data.tar.gz: a4b24000bd076ba214c300c3fb6df31205aa2e5c902b18b283c927d8b3b3a2a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66f4ae2af899d916990f755ecd458a3a65e5ac4b3f2f0f0018162ab4a8e26a6bfa68ef2af3b035ec82fcbab4b4118b4b46fccaebb31e719e7842ccbd4ff694ab
|
7
|
+
data.tar.gz: 8bac8d9abd629d29ca25a49aae129c7ec546842c18903b674b441311cf01e9627350e3cc48ae6ee0f7c31f1d6ed59d072437b1db749e4b37fe9ec0a604d6d245
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# TypeBalancer Rails
|
2
2
|
|
3
|
-
[](https://badge.fury.io/rb/type_balancer_rails)
|
4
4
|
[](https://github.com/llwebconsulting/type_balancer-rails/actions)
|
5
5
|
[](LICENSE)
|
6
6
|
|
@@ -11,7 +11,7 @@ Rails integration for the [TypeBalancer](https://github.com/llwebconsulting/type
|
|
11
11
|
Add this line to your application's Gemfile:
|
12
12
|
|
13
13
|
```ruby
|
14
|
-
gem '
|
14
|
+
gem 'type_balancer_rails'
|
15
15
|
```
|
16
16
|
|
17
17
|
And then execute:
|
@@ -23,7 +23,7 @@ $ bundle install
|
|
23
23
|
Or install it yourself as:
|
24
24
|
|
25
25
|
```bash
|
26
|
-
$ gem install
|
26
|
+
$ gem install type_balancer_rails
|
27
27
|
```
|
28
28
|
|
29
29
|
## Usage
|
data/lib/type_balancer_rails.rb
CHANGED
data/type_balancer_rails.gemspec
CHANGED
@@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.require_paths = ['lib']
|
31
31
|
|
32
32
|
# Runtime dependencies
|
33
|
-
spec.add_dependency 'activerecord', '
|
34
|
-
spec.add_dependency 'activesupport', '
|
33
|
+
spec.add_dependency 'activerecord', '>= 7.0', '< 9.0'
|
34
|
+
spec.add_dependency 'activesupport', '>= 7.0', '< 9.0'
|
35
35
|
spec.add_dependency 'type_balancer', '~> 0.1', '>= 0.1.0'
|
36
36
|
|
37
37
|
# For more information and examples about making a new gem, check out our
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: type_balancer_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carl Smith
|
@@ -14,30 +14,42 @@ dependencies:
|
|
14
14
|
name: activerecord
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '7.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '9.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '7.0'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '9.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: activesupport
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- - "
|
37
|
+
- - ">="
|
32
38
|
- !ruby/object:Gem::Version
|
33
39
|
version: '7.0'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '9.0'
|
34
43
|
type: :runtime
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
38
|
-
- - "
|
47
|
+
- - ">="
|
39
48
|
- !ruby/object:Gem::Version
|
40
49
|
version: '7.0'
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '9.0'
|
41
53
|
- !ruby/object:Gem::Dependency
|
42
54
|
name: type_balancer
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|