client_side_validations-mongoid 10.1.0 → 12.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 647ea513d766cbbfbf5b14b11826abfe8b133bb968b192fc6c0d0a70fbc9e1e4
4
- data.tar.gz: 20a5c932ba2a43ff6d1e2b26c917b7e2a6fd921e77f893f0a3b48fd1c52b9129
3
+ metadata.gz: 21014ee52498b82cdda15296f3369aeb28df0536a8a95a10fd3472b43640df65
4
+ data.tar.gz: '085886035e040527e41bc29755162e4bf74b687091d4eac6b0121a92d186d94b'
5
5
  SHA512:
6
- metadata.gz: dd2576b8ba86c0cb0479c92823a21a9e8847a3ab42b2b8a4c9a806366208346c7ee856d0a7d5ca607686d78d186793b5f1d1713ece8bd8598fecb2a17c02f628
7
- data.tar.gz: 61e3f4546aef8a04e1c22dccbc6655e02e803ace5295001575dda30aa1d6328885835901e2dee3bcbcce3f1ccfa0ba78659ef46a49785fc65e69afd0de5815f8
6
+ metadata.gz: 2b22ffaa8d786683da0a451cef6dff30e688f0b4bb28e08485d449cb46ad7390ce4eb2bbc18b135bd38137915c3513313aca1bd6186d9cc7a678cffb28095191
7
+ data.tar.gz: 3d74b30b1c301a9384cf15b714aa64670b9b59fe3da4e174b57df0e7e697e4aa0919270c8b7be35d13abb4de393be26bf511f98069c0922b5da1b789ef644e42
data/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.1.0 / 2021-12-16
4
+
5
+ * [FEATURE] Add CSV 20.0 compatibility
6
+ * [ENHANCEMENT] Update development dependencies
7
+
8
+ ## 12.0.0 / 2021-10-09
9
+
10
+ * [FEATURE] Add CSV 19.0 compatibility
11
+ * [FEATURE] Drop CSV < 19.0 compatibility
12
+ * [FEATURE] Drop Ruby < 2.5 compatibility
13
+ * [FEATURE] Drop Mongoid < 7 compatibility
14
+ * [ENHANCEMENT] Update development dependencies
15
+ * [ENHANCEMENT] Move CI to GitHub Actions
16
+
17
+ ## 11.1.0 / 2021-02-07
18
+
19
+ * [FEATURE] Add CSV 18.0 compatibility
20
+ * [ENHANCEMENT] Update development dependencies
21
+
22
+ ## 11.0.0 / 2021-02-07
23
+
24
+ * [ENHANCEMENT] Default branch is now `main` **POSSIBLE BREAKING CHANGE!**
25
+ * [ENHANCEMENT] Update development dependencies
26
+
3
27
  ## 10.1.0 / 2020-10-10
4
28
 
5
29
  * [FEATURE] Allow Ruby 3.0.0
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Geremia Taglialatela, Brian Cardarella
3
+ Copyright (c) 2021 Geremia Taglialatela, Brian Cardarella
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,12 +1,11 @@
1
1
  # ClientSideValidations-Mongoid #
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/client_side_validations-mongoid.svg)](https://badge.fury.io/rb/client_side_validations-mongoid)
4
- [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=client_side_validations-mongoid&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=client_side_validations-mongoid&package-manager=bundler&version-scheme=semver)
5
- [![Build Status](https://secure.travis-ci.org/DavyJonesLocker/client_side_validations-mongoid.svg?branch=master)](https://travis-ci.org/DavyJonesLocker/client_side_validations-mongoid)
4
+ [![Build Status](https://github.com/DavyJonesLocker/client_side_validations-mongoid/actions/workflows/ruby.yml/badge.svg)](https://github.com/DavyJonesLocker/client_side_validations-mongoid/actions)
6
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/4f8300006c02f7f4aa6d/maintainability)](https://codeclimate.com/github/DavyJonesLocker/client_side_validations-mongoid/maintainability)
7
- [![Coverage Status](https://coveralls.io/repos/DavyJonesLocker/client_side_validations-mongoid/badge.svg?branch=master)](https://coveralls.io/r/DavyJonesLocker/client_side_validations-mongoid?branch=master)
6
+ [![Coverage Status](https://coveralls.io/repos/DavyJonesLocker/client_side_validations-mongoid/badge.svg?branch=main)](https://coveralls.io/r/DavyJonesLocker/client_side_validations-mongoid?branch=main)
8
7
 
9
- [Mongoid](https://docs.mongodb.com/ruby-driver/master/mongoid/#ruby-mongoid-tutorial) plugin for [ClientSideValidations](https://github.com/DavyJonesLocker/client_side_validations)
8
+ [Mongoid](https://docs.mongodb.com/mongoid/master/#ruby-mongoid-tutorial) plugin for [ClientSideValidations](https://github.com/DavyJonesLocker/client_side_validations)
10
9
 
11
10
  ## Installation ##
12
11
 
@@ -21,7 +20,7 @@ gem 'client_side_validations-mongoid'
21
20
  Order matters here. `Mongoid` and `ClientSideValidations` need to be
22
21
  required **before** `ClientSideValidations-Mongoid`.
23
22
 
24
- [Follow the remaining installation instructions for ClientSideValidations](https://github.com/DavyJonesLocker/client_side_validations/blob/master/README.md)
23
+ [Follow the remaining installation instructions for ClientSideValidations](https://github.com/DavyJonesLocker/client_side_validations/blob/main/README.md)
25
24
 
26
25
  ## Usage ##
27
26
 
@@ -54,12 +53,12 @@ This gem follows [Semantic Versioning](https://semver.org)
54
53
  ## Want to help? ##
55
54
 
56
55
  Please do! We are always looking to improve this gem. Please see our
57
- [Contribution Guidelines](https://github.com/DavyJonesLocker/client_side_validations-mongoid/blob/master/CONTRIBUTING.md)
56
+ [Contribution Guidelines](https://github.com/DavyJonesLocker/client_side_validations-mongoid/blob/main/CONTRIBUTING.md)
58
57
  on how to properly submit issues and pull requests.
59
58
 
60
59
  ## Legal ##
61
60
 
62
- [DockYard](https://dockyard.com/), LLC &copy; 2012-2020
61
+ [DockYard](https://dockyard.com/), LLC &copy; 2012-2021
63
62
 
64
63
  [@dockyard](https://twitter.com/dockyard)
65
64
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ClientSideValidations
4
4
  module Mongoid
5
- VERSION = '10.1.0'
5
+ VERSION = '12.1.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: client_side_validations-mongoid
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.1.0
4
+ version: 12.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geremia Taglialatela
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-10-10 00:00:00.000000000 Z
12
+ date: 2021-12-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: client_side_validations
@@ -17,27 +17,27 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: '15.0'
20
+ version: '19.0'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '18.0'
23
+ version: '21'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
28
  - - ">="
29
29
  - !ruby/object:Gem::Version
30
- version: '15.0'
30
+ version: '19.0'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '18.0'
33
+ version: '21'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: mongoid
36
36
  requirement: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '6.0'
40
+ version: '7.0'
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
43
  version: '8'
@@ -47,7 +47,7 @@ dependencies:
47
47
  requirements:
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
- version: '6.0'
50
+ version: '7.0'
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
53
  version: '8'
@@ -57,14 +57,14 @@ dependencies:
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '2.3'
60
+ version: '2.4'
61
61
  type: :development
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '2.3'
67
+ version: '2.4'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: byebug
70
70
  requirement: !ruby/object:Gem::Requirement
@@ -80,47 +80,33 @@ dependencies:
80
80
  - !ruby/object:Gem::Version
81
81
  version: '11.1'
82
82
  - !ruby/object:Gem::Dependency
83
- name: coveralls_reborn
83
+ name: database_cleaner-mongoid
84
84
  requirement: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: 0.18.0
88
+ version: '2.0'
89
89
  type: :development
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: 0.18.0
96
- - !ruby/object:Gem::Dependency
97
- name: database_cleaner
98
- requirement: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '1.7'
103
- type: :development
104
- prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '1.7'
95
+ version: '2.0'
110
96
  - !ruby/object:Gem::Dependency
111
97
  name: m
112
98
  requirement: !ruby/object:Gem::Requirement
113
99
  requirements:
114
100
  - - "~>"
115
101
  - !ruby/object:Gem::Version
116
- version: '1.5'
102
+ version: '1.6'
117
103
  type: :development
118
104
  prerelease: false
119
105
  version_requirements: !ruby/object:Gem::Requirement
120
106
  requirements:
121
107
  - - "~>"
122
108
  - !ruby/object:Gem::Version
123
- version: '1.5'
109
+ version: '1.6'
124
110
  - !ruby/object:Gem::Dependency
125
111
  name: minitest
126
112
  requirement: !ruby/object:Gem::Requirement
@@ -141,14 +127,14 @@ dependencies:
141
127
  requirements:
142
128
  - - "~>"
143
129
  - !ruby/object:Gem::Version
144
- version: '1.11'
130
+ version: '1.13'
145
131
  type: :development
146
132
  prerelease: false
147
133
  version_requirements: !ruby/object:Gem::Requirement
148
134
  requirements:
149
135
  - - "~>"
150
136
  - !ruby/object:Gem::Version
151
- version: '1.11'
137
+ version: '1.13'
152
138
  - !ruby/object:Gem::Dependency
153
139
  name: rake
154
140
  requirement: !ruby/object:Gem::Requirement
@@ -164,67 +150,33 @@ dependencies:
164
150
  - !ruby/object:Gem::Version
165
151
  version: '13.0'
166
152
  - !ruby/object:Gem::Dependency
167
- name: rubocop
168
- requirement: !ruby/object:Gem::Requirement
169
- requirements:
170
- - - "~>"
171
- - !ruby/object:Gem::Version
172
- version: 0.93.0
173
- type: :development
174
- prerelease: false
175
- version_requirements: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - "~>"
178
- - !ruby/object:Gem::Version
179
- version: 0.93.0
180
- - !ruby/object:Gem::Dependency
181
- name: rubocop-performance
153
+ name: simplecov
182
154
  requirement: !ruby/object:Gem::Requirement
183
155
  requirements:
184
156
  - - "~>"
185
157
  - !ruby/object:Gem::Version
186
- version: '1.8'
158
+ version: 0.21.2
187
159
  type: :development
188
160
  prerelease: false
189
161
  version_requirements: !ruby/object:Gem::Requirement
190
162
  requirements:
191
163
  - - "~>"
192
164
  - !ruby/object:Gem::Version
193
- version: '1.8'
165
+ version: 0.21.2
194
166
  - !ruby/object:Gem::Dependency
195
- name: rubocop-rails
167
+ name: simplecov-lcov
196
168
  requirement: !ruby/object:Gem::Requirement
197
169
  requirements:
198
170
  - - "~>"
199
171
  - !ruby/object:Gem::Version
200
- version: '2.8'
172
+ version: 0.8.0
201
173
  type: :development
202
174
  prerelease: false
203
175
  version_requirements: !ruby/object:Gem::Requirement
204
176
  requirements:
205
177
  - - "~>"
206
178
  - !ruby/object:Gem::Version
207
- version: '2.8'
208
- - !ruby/object:Gem::Dependency
209
- name: simplecov
210
- requirement: !ruby/object:Gem::Requirement
211
- requirements:
212
- - - ">="
213
- - !ruby/object:Gem::Version
214
- version: 0.18.5
215
- - - "<"
216
- - !ruby/object:Gem::Version
217
- version: 0.20.0
218
- type: :development
219
- prerelease: false
220
- version_requirements: !ruby/object:Gem::Requirement
221
- requirements:
222
- - - ">="
223
- - !ruby/object:Gem::Version
224
- version: 0.18.5
225
- - - "<"
226
- - !ruby/object:Gem::Version
227
- version: 0.20.0
179
+ version: 0.8.0
228
180
  description: Mongoid Plugin for ClientSideValidations
229
181
  email:
230
182
  - tagliala.dev@gmail.com
@@ -244,8 +196,9 @@ homepage: https://github.com/DavyJonesLocker/client_side_validations-mongoid
244
196
  licenses:
245
197
  - MIT
246
198
  metadata:
199
+ rubygems_mfa_required: 'true'
247
200
  bug_tracker_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form/issues
248
- changelog_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form/blob/master/CHANGELOG.md
201
+ changelog_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form/blob/main/CHANGELOG.md
249
202
  source_code_uri: https://github.com/DavyJonesLocker/client_side_validations-simple_form
250
203
  post_install_message:
251
204
  rdoc_options: []
@@ -255,14 +208,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
255
208
  requirements:
256
209
  - - ">="
257
210
  - !ruby/object:Gem::Version
258
- version: '2.4'
211
+ version: '2.5'
259
212
  required_rubygems_version: !ruby/object:Gem::Requirement
260
213
  requirements:
261
214
  - - ">="
262
215
  - !ruby/object:Gem::Version
263
216
  version: '0'
264
217
  requirements: []
265
- rubygems_version: 3.1.4
218
+ rubygems_version: 3.1.6
266
219
  signing_key:
267
220
  specification_version: 4
268
221
  summary: ClientSideValidations Mongoid