umbrellio-sequel-plugins 0.16.0.233 → 0.16.0.235

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
2
  SHA256:
3
- metadata.gz: f99210289f0bcda7e404863aecae549253695fb74efe7a29c74ac8a22d4f0433
4
- data.tar.gz: 1c57a136fba91319c5bd973820c507f560d58f4d735d1146ee4bd3c75b05c3e1
3
+ metadata.gz: b173b26cf90ae89290d41a74c5ade30a0824a8c499bf4b8b69cc4f1c89ca987d
4
+ data.tar.gz: 8fc3a0de1cd84fdb69b54a2554afdc2e4ca491a1d8f3215e302acbd0919ea4d8
5
5
  SHA512:
6
- metadata.gz: 5de74f4e9b3957d83a87e666e574bbe605d6aea76b012a07f6c4fd7b6feb691374a4a5e1b225298a3ef2428d8c96d3a1ecd6c0aec2ecbb29a57f3d5aaab0ff33
7
- data.tar.gz: '086c64ccf2e4a141a17895ad31659521043c06f0254da02ea40a4ead25e58f86cc25153b5e9cbbb4a775be3e7a3f4b762c91cd17a4eeddf772ebb2891636dedb'
6
+ metadata.gz: ca5559966e51aa9b4eb0f608867162b8bc7c44a6a4572f3f86331a3d03c5c17d5467c748ad1c4599d5c1362af6616a5fe954c065733fa5f7f5f5910858eaff38
7
+ data.tar.gz: 2ee2ee2180fee590ee6df9b9b00291d6a727f9ac5b0dda968d154dcfcf6145e9e261c1ffe02d537426328cc569e35346d3f9dd3d47f72ad0ab2df519782c9311
@@ -69,10 +69,6 @@ jobs:
69
69
  - uses: ruby/setup-ruby@v1
70
70
  with:
71
71
  ruby-version: ruby
72
-
73
- - run: bundle install
74
- - run: git config --global user.name "Github Actions"
75
- - run: git config --global user.email "actions@github.com"
76
- - run: git commit -am "update Gemfile.lock"
72
+ bundler-cache: true
77
73
 
78
74
  - uses: rubygems/release-gem@v1
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
 
13
13
  log
14
14
  *.gemspec
15
+ Gemfile.lock
data/Gemfile CHANGED
@@ -4,13 +4,13 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- gem "async", "1.31.0" # TODO: Remove version binding after Ruby 2.7 and 3.0 support drop.
8
- gem "money"
9
- gem "pg"
10
- gem "pry"
11
- gem "rake"
12
- gem "rspec"
13
- gem "rubocop-config-umbrellio"
14
- gem "simplecov"
15
- gem "simplecov-lcov"
16
- gem "symbiont-ruby"
7
+ gem "async", "~> 1.31.0"
8
+ gem "money", "~> 6.19.0"
9
+ gem "pg", "~> 1.5.7"
10
+ gem "pry", "~> 0.14.2"
11
+ gem "rake", "~> 13.2.1"
12
+ gem "rspec", "~> 3.13.0"
13
+ gem "rubocop-config-umbrellio", "~> 1.63.0.93"
14
+ gem "simplecov", "~> 0.22.0"
15
+ gem "simplecov-lcov", "~> 0.8.0"
16
+ gem "symbiont-ruby", "~> 0.7.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: umbrellio-sequel-plugins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0.233
4
+ version: 0.16.0.235
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Umbrellio
@@ -35,9 +35,7 @@ files:
35
35
  - ".gitignore"
36
36
  - ".rspec"
37
37
  - ".rubocop.yml"
38
- - CHANGELOG.md
39
38
  - Gemfile
40
- - Gemfile.lock
41
39
  - LICENSE
42
40
  - README.md
43
41
  - Rakefile
data/CHANGELOG.md DELETED
@@ -1,43 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- ## [0.14.0] -2023-07-17
5
- ### Added
6
- - `Fibered Connection Pool` extension;
7
-
8
- ## [0.9.0] 2022-07-01
9
- ### Added
10
- - Add `--server` option to `rails dbconsole` command.
11
-
12
- ## [0.8.0] 2022-06-29
13
- ### Added
14
- - `rails dbconsole` command support for Sequel (also aliased as `rails db`) for easy access to the DB console. See the README for installation instructions.
15
-
16
- ## [0.7.0] 2022-06-24
17
- ### Added
18
- - `DB.extension(:set_local)` - allows to set transaction locals;
19
- - Support of transaction options via `transaction_options` in migrations;
20
-
21
- ## [0.6.0] 2022-06-15
22
- ### Added
23
- - `mode` param for `Sequel::Model.plugin(:with_lock)`, defaults to `FOR NO KEY UPDATE`;
24
-
25
- ## [0.5.0] 2020-06-06
26
- ### Added
27
- - `Sequel::Model.plugin(:attr_encrypted)` - encrypts to model attributes;
28
-
29
- ## [0.4.0] 2019-11-18
30
- ### Added
31
- - `Sequel.extension(:deferrable_foreign_keys)` - makes foreign keys constraints deferrable by default;
32
-
33
- ## [0.3.2] 2018-07-03
34
- ### Added
35
- - Support sequel expressions in `with_rates`;
36
-
37
- ## [0.3.0] 2018-04-24
38
- ### Added
39
- - `currency_column` param for `CurrencyRates.with_rates`;
40
-
41
- ## [0.2.0] 2018-03-28
42
- ### Added
43
- - `Sequel.extension(:methods_in_migrations)` - support for method definitions in `Sequel.migration` instructions;
data/Gemfile.lock DELETED
@@ -1,153 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- umbrellio-sequel-plugins (0.16.0.233)
5
- sequel
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activesupport (7.1.4)
11
- base64
12
- bigdecimal
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
14
- connection_pool (>= 2.2.5)
15
- drb
16
- i18n (>= 1.6, < 2)
17
- minitest (>= 5.1)
18
- mutex_m
19
- tzinfo (~> 2.0)
20
- ast (2.4.2)
21
- async (1.31.0)
22
- console (~> 1.10)
23
- nio4r (~> 2.3)
24
- timers (~> 4.1)
25
- base64 (0.2.0)
26
- bigdecimal (3.1.8)
27
- coderay (1.1.3)
28
- concurrent-ruby (1.3.4)
29
- connection_pool (2.4.1)
30
- console (1.24.0)
31
- fiber-annotation
32
- fiber-local
33
- json
34
- diff-lcs (1.5.1)
35
- docile (1.4.1)
36
- drb (2.2.1)
37
- fiber-annotation (0.2.0)
38
- fiber-local (1.0.0)
39
- i18n (1.14.5)
40
- concurrent-ruby (~> 1.0)
41
- json (2.7.2)
42
- language_server-protocol (3.17.0.3)
43
- method_source (1.1.0)
44
- minitest (5.25.1)
45
- money (6.19.0)
46
- i18n (>= 0.6.4, <= 2)
47
- mutex_m (0.2.0)
48
- nio4r (2.7.3)
49
- parallel (1.26.3)
50
- parser (3.3.5.0)
51
- ast (~> 2.4.1)
52
- racc
53
- pg (1.5.7)
54
- pry (0.14.2)
55
- coderay (~> 1.1)
56
- method_source (~> 1.0)
57
- racc (1.8.1)
58
- rack (3.1.7)
59
- rainbow (3.1.1)
60
- rake (13.2.1)
61
- regexp_parser (2.9.2)
62
- rexml (3.3.7)
63
- rspec (3.13.0)
64
- rspec-core (~> 3.13.0)
65
- rspec-expectations (~> 3.13.0)
66
- rspec-mocks (~> 3.13.0)
67
- rspec-core (3.13.1)
68
- rspec-support (~> 3.13.0)
69
- rspec-expectations (3.13.2)
70
- diff-lcs (>= 1.2.0, < 2.0)
71
- rspec-support (~> 3.13.0)
72
- rspec-mocks (3.13.1)
73
- diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.13.0)
75
- rspec-support (3.13.1)
76
- rubocop (1.63.5)
77
- json (~> 2.3)
78
- language_server-protocol (>= 3.17.0)
79
- parallel (~> 1.10)
80
- parser (>= 3.3.0.2)
81
- rainbow (>= 2.2.2, < 4.0)
82
- regexp_parser (>= 1.8, < 3.0)
83
- rexml (>= 3.2.5, < 4.0)
84
- rubocop-ast (>= 1.31.1, < 2.0)
85
- ruby-progressbar (~> 1.7)
86
- unicode-display_width (>= 2.4.0, < 3.0)
87
- rubocop-ast (1.32.3)
88
- parser (>= 3.3.1.0)
89
- rubocop-capybara (2.21.0)
90
- rubocop (~> 1.41)
91
- rubocop-config-umbrellio (1.63.0.93)
92
- rubocop (~> 1.63.0)
93
- rubocop-performance (~> 1.21.0)
94
- rubocop-rails (~> 2.24.0)
95
- rubocop-rake (~> 0.6.0)
96
- rubocop-rspec (~> 2.29.0)
97
- rubocop-sequel (~> 0.3.3)
98
- rubocop-factory_bot (2.26.1)
99
- rubocop (~> 1.61)
100
- rubocop-performance (1.21.1)
101
- rubocop (>= 1.48.1, < 2.0)
102
- rubocop-ast (>= 1.31.1, < 2.0)
103
- rubocop-rails (2.24.1)
104
- activesupport (>= 4.2.0)
105
- rack (>= 1.1)
106
- rubocop (>= 1.33.0, < 2.0)
107
- rubocop-ast (>= 1.31.1, < 2.0)
108
- rubocop-rake (0.6.0)
109
- rubocop (~> 1.0)
110
- rubocop-rspec (2.29.2)
111
- rubocop (~> 1.40)
112
- rubocop-capybara (~> 2.17)
113
- rubocop-factory_bot (~> 2.22)
114
- rubocop-rspec_rails (~> 2.28)
115
- rubocop-rspec_rails (2.29.1)
116
- rubocop (~> 1.61)
117
- rubocop-sequel (0.3.4)
118
- rubocop (~> 1.0)
119
- ruby-progressbar (1.13.0)
120
- sequel (5.84.0)
121
- bigdecimal
122
- simplecov (0.22.0)
123
- docile (~> 1.1)
124
- simplecov-html (~> 0.11)
125
- simplecov_json_formatter (~> 0.1)
126
- simplecov-html (0.12.3)
127
- simplecov-lcov (0.8.0)
128
- simplecov_json_formatter (0.1.4)
129
- symbiont-ruby (0.7.0)
130
- timers (4.3.5)
131
- tzinfo (2.0.6)
132
- concurrent-ruby (~> 1.0)
133
- unicode-display_width (2.5.0)
134
-
135
- PLATFORMS
136
- arm64-darwin-23
137
- x86_64-linux
138
-
139
- DEPENDENCIES
140
- async (= 1.31.0)
141
- money
142
- pg
143
- pry
144
- rake
145
- rspec
146
- rubocop-config-umbrellio
147
- simplecov
148
- simplecov-lcov
149
- symbiont-ruby
150
- umbrellio-sequel-plugins!
151
-
152
- BUNDLED WITH
153
- 2.5.18