parroquia 1.1.39 → 1.1.40

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: c8d53c2cb6ad721c4315bf66a9d1b21835fdd712a9d4785ef3248e8e8716efd8
4
- data.tar.gz: 64143c6478eed04a9eebdb3d272346fd2bed6007d1ac3992a8749680895f565d
3
+ metadata.gz: 3772880650ff902f6c7f38b7d948c28e643fe50f9fe8c235f8dc832b05a966be
4
+ data.tar.gz: 98cc30d41eb574f1aa5991dc55565c46ee9a2a832c8f9a4cc6ac50933d6178b8
5
5
  SHA512:
6
- metadata.gz: e75cb61e7fc2a9637acd123a471c27d01ba873a5d7ceb934991acfdf9ece4cc65b381a1d97964e44df427fdfe8c4b54ce38aeae3d423df83d86a6c7bcf6ce161
7
- data.tar.gz: e1eef7029ba4ff9564d028481ac10299564f44c3253b15a692a5712c772bbf6623d8fc5a4619d6cbd740db16e51243dfea389d340bed3c84ca9f8f5ac1d77713
6
+ metadata.gz: 13d4fa704390586c238e79fd7d86327084eb317a6e9248d55222dd45917d4a3ef49246cd9c3f948aac28693ef2b277663472212e9a3437ca98d8a3ff90f804de
7
+ data.tar.gz: fb0a0dedaca2c7e6ac35688071660dbf1e7635d7f0c9c9947b3ee00f94c38ddd8dbbb603d66348cc1d11eb368337cf629229ff4e101096e135d51a45be189888
@@ -110,7 +110,7 @@ class Alumno < FXMainWindow
110
110
  # tabla niveles (id, nivel, sector, anio_lectivo)
111
111
  def validar_formato_fecha(fecha)
112
112
  begin
113
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
113
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
114
114
  return true
115
115
  rescue ArgumentError
116
116
  return false
@@ -242,7 +242,7 @@ class ActualizarBautismo < FXMainWindow
242
242
 
243
243
  def validar_formato_fecha(fecha)
244
244
  begin
245
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
245
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
246
246
  return true
247
247
  rescue ArgumentError
248
248
  return false
@@ -152,7 +152,7 @@ class ActualizarPreBautismal < FXMainWindow
152
152
 
153
153
  def validar_formato_fecha(fecha)
154
154
  begin
155
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
155
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
156
156
  return true
157
157
  rescue ArgumentError
158
158
  return false
@@ -152,7 +152,7 @@ class ActualizarComunion < FXMainWindow
152
152
 
153
153
  def validar_formato_fecha(fecha)
154
154
  begin
155
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
155
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
156
156
  return true
157
157
  rescue ArgumentError
158
158
  return false
@@ -158,7 +158,7 @@ class ActualizarConfirmacion < FXMainWindow
158
158
 
159
159
  def validar_formato_fecha(fecha)
160
160
  begin
161
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
161
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
162
162
  return true
163
163
  rescue ArgumentError
164
164
  return false
@@ -217,7 +217,7 @@ class ActualizarLicenciaMatrimonio < FXMainWindow
217
217
 
218
218
  def validar_formato_fecha(fecha)
219
219
  begin
220
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
220
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
221
221
  return true
222
222
  rescue ArgumentError
223
223
  return false
@@ -231,7 +231,7 @@ class ActualizarMatrimonio < FXMainWindow
231
231
 
232
232
  def validar_formato_fecha(fecha)
233
233
  begin
234
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
234
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
235
235
  return true
236
236
  rescue ArgumentError
237
237
  return false
@@ -97,7 +97,7 @@ class ActualizarMisa < FXMainWindow
97
97
 
98
98
  def validar_formato_fecha(fecha)
99
99
  begin
100
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
100
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
101
101
  return true
102
102
  rescue ArgumentError
103
103
  return false
@@ -167,7 +167,7 @@ class ActualizarPermisoBautismo < FXMainWindow
167
167
 
168
168
  def validar_formato_fecha(fecha)
169
169
  begin
170
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
170
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
171
171
  return true
172
172
  rescue ArgumentError
173
173
  return false
@@ -145,7 +145,7 @@ class ActualizarPreMatrimonial < FXMainWindow
145
145
 
146
146
  def validar_formato_fecha(fecha)
147
147
  begin
148
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
148
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
149
149
  return true
150
150
  rescue ArgumentError
151
151
  return false
@@ -256,7 +256,7 @@ class ActualizarSupletoria < FXMainWindow
256
256
 
257
257
  def validar_formato_fecha(fecha)
258
258
  begin
259
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
259
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
260
260
  return true
261
261
  rescue ArgumentError
262
262
  return false
@@ -218,7 +218,7 @@ class Bautizo < FXMainWindow
218
218
 
219
219
  def validar_formato_fecha(fecha)
220
220
  begin
221
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
221
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
222
222
  return true
223
223
  rescue ArgumentError
224
224
  return false
@@ -139,7 +139,7 @@ class PreBautismal < FXMainWindow
139
139
 
140
140
  def validar_formato_fecha(fecha)
141
141
  begin
142
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
142
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
143
143
  return true
144
144
  rescue ArgumentError
145
145
  return false
@@ -141,7 +141,7 @@ class Comunion < FXMainWindow
141
141
 
142
142
  def validar_formato_fecha(fecha)
143
143
  begin
144
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
144
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
145
145
  return true
146
146
  rescue ArgumentError
147
147
  return false
@@ -147,7 +147,7 @@ class Confirmacion < FXMainWindow
147
147
 
148
148
  def validar_formato_fecha(fecha)
149
149
  begin
150
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
150
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
151
151
  return true
152
152
  rescue ArgumentError
153
153
  return false
@@ -193,7 +193,7 @@ class LicenciaMatrimonio < FXMainWindow
193
193
  # tabla registros_civiles (id, provincia_rc, canton_rc, parroquia_rc, anio_rc, tomo_rc, pagina_rc, acta_rc, fecha_rc)
194
194
  def validar_formato_fecha(fecha)
195
195
  begin
196
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
196
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
197
197
  return true
198
198
  rescue ArgumentError
199
199
  return false
@@ -209,7 +209,7 @@ class Matrimonio < FXMainWindow
209
209
  # tabla registros_civiles (id, provincia_rc, canton_rc, parroquia_rc, anio_rc, tomo_rc, pagina_rc, acta_rc, fecha_rc)
210
210
  def validar_formato_fecha(fecha)
211
211
  begin
212
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
212
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
213
213
  return true
214
214
  rescue ArgumentError
215
215
  return false
@@ -92,7 +92,7 @@ class Misa < FXMainWindow
92
92
 
93
93
  def validar_formato_fecha(fecha)
94
94
  begin
95
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
95
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
96
96
  return true
97
97
  rescue ArgumentError
98
98
  return false
@@ -151,7 +151,7 @@ class PermisoBautizo < FXMainWindow
151
151
 
152
152
  def validar_formato_fecha(fecha)
153
153
  begin
154
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
154
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
155
155
  return true
156
156
  rescue ArgumentError
157
157
  return false
@@ -132,7 +132,7 @@ class PermisoMatrimonio < FXMainWindow
132
132
 
133
133
  def validar_formato_fecha(fecha)
134
134
  begin
135
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
135
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
136
136
  return true
137
137
  rescue ArgumentError
138
138
  return false
@@ -226,7 +226,7 @@ class Supletoria < FXMainWindow
226
226
 
227
227
  def validar_formato_fecha(fecha)
228
228
  begin
229
- Date.strptime(fecha, '%Y/%m/%d' || '%Y-%m-%d')
229
+ Date.strptime(fecha, '%Y/%m/%d') || Date.strptime(fecha, '%Y-%m-%d')
230
230
  return true
231
231
  rescue ArgumentError
232
232
  return false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parroquia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.39
4
+ version: 1.1.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francisco Javier Borja Lobato