pg_rails 7.6.35 → 7.6.36
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/pg_engine/app/assets/stylesheets/pg_engine.scss +3 -0
- data/pg_engine/app/models/user.rb +1 -1
- data/pg_engine/app/views/active_storage/blobs/_blob.html.erb +1 -1
- data/pg_engine/config/locales/es.rb +1 -1
- data/pg_engine/config/routes.rb +1 -1
- data/pg_engine/spec/factories/users.rb +2 -2
- data/pg_engine/spec/models/user_spec.rb +7 -0
- data/pg_rails/lib/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15826d7f758337068682991844f212e34828b09f4fe9e6ad2e4e8a134b197ecb
|
4
|
+
data.tar.gz: 54c484be1abf1c860de9f5a73b3f039d588a568fd9d45e72c96d370609003571
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96b9f2c3933b26fd11784fc7310e444cc3acee80ac459764f9b4b642f142ddae0eb37a308a54fb9cc924a591c08fd297b740a25f65fc24c86fdc0f6637139c39
|
7
|
+
data.tar.gz: 6297e77049497b5c341e7260d22b9fe36e6dd7e0d8d94c37c8037df36eddf45c2c9c5ef3f9c80bd2ac1421f54ad50e1fba6bcbb17c9491dc5c0d5a26224d3bc5
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<figure class="attachment attachment--<%= blob.representable? ? "preview" : "file" %> attachment--<%= blob.filename.extension %>">
|
2
2
|
<% if blob.representable? %>
|
3
|
-
<%= image_tag blob.representation(resize_to_limit: local_assigns[:in_gallery] ? [
|
3
|
+
<%= image_tag blob.representation(resize_to_limit: local_assigns[:in_gallery] ? [ 400, 300 ] : [ 100, 75 ]) %>
|
4
4
|
<% end %>
|
5
5
|
|
6
6
|
<%= link_to rails_blob_path(blob) do %>
|
@@ -42,7 +42,7 @@ end
|
|
42
42
|
back_to_index: 'Volver al listado principal',
|
43
43
|
bulk_edit: {
|
44
44
|
enqueue_update: "Modificación en proceso (podría demorar algunos segundos en completarse)",
|
45
|
-
blank_ids: PgEngine::I18nRules.rule("No hay %{genderize(ninguna,ningún)} %{singular_model} seleccionada"),
|
45
|
+
blank_ids: PgEngine::I18nRules.rule("No hay %{genderize(ninguna,ningún)} %{singular_model} %{genderize(seleccionada,seleccionado)}"),
|
46
46
|
bulk_not_hash: "Debés seleccionar al menos un campo",
|
47
47
|
title: PgEngine::I18nRules.rule("Modificación masiva de %{plural_model}"),
|
48
48
|
link: PgEngine::I18nRules.rule("Modificar masivamente"),
|
data/pg_engine/config/routes.rb
CHANGED
@@ -4,7 +4,7 @@ Rails.application.routes.draw do
|
|
4
4
|
get "pg_engine/health" => "pg_engine/health#show", as: :pg_engine_health_check
|
5
5
|
|
6
6
|
get '404', to: 'application#page_not_found'
|
7
|
-
get '500', to: 'application#
|
7
|
+
# get '500', to: 'application#handle_internal_error'
|
8
8
|
get 'internal_error_but_with_status200', to: 'application#internal_error_but_with_status200'
|
9
9
|
|
10
10
|
get 'contacto', to: 'public/mensaje_contactos#new'
|
data/pg_rails/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.6.
|
4
|
+
version: 7.6.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martín Rosso
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|