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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2749a5b4bfd158279a0e768b5a8e379302b2c71d0ace5e6162a2ad1eef01adc
4
- data.tar.gz: 649a2ab01df77e08404832d84b17ae66fd64e383343a165e2c83d6856dd93467
3
+ metadata.gz: 15826d7f758337068682991844f212e34828b09f4fe9e6ad2e4e8a134b197ecb
4
+ data.tar.gz: 54c484be1abf1c860de9f5a73b3f039d588a568fd9d45e72c96d370609003571
5
5
  SHA512:
6
- metadata.gz: 8b5a1340887f5c9be83055c40e2316741176aea1810fc28dfe77f3475cefebb557e07f6de6f2e081517fafc6d53a6f14106e9145101d8316b2b91421f114fdf3
7
- data.tar.gz: 4b3974156468841816dddefa932d7f132448f3e3218e9a41f2911f646361e74bd4c7ed4a2bf6cd98e57cf6dc11f7383f2f98eec9d5107ed4dfe3213f306b1270
6
+ metadata.gz: 96b9f2c3933b26fd11784fc7310e444cc3acee80ac459764f9b4b642f142ddae0eb37a308a54fb9cc924a591c08fd297b740a25f65fc24c86fdc0f6637139c39
7
+ data.tar.gz: 6297e77049497b5c341e7260d22b9fe36e6dd7e0d8d94c37c8037df36eddf45c2c9c5ef3f9c80bd2ac1421f54ad50e1fba6bcbb17c9491dc5c0d5a26224d3bc5
@@ -45,6 +45,9 @@ nav[aria-label=breadcrumb] a {
45
45
  .trix-content figure a:hover {
46
46
  text-decoration: underline;
47
47
  }
48
+ .trix-content .attachment--preview {
49
+ width: 100px;
50
+ }
48
51
 
49
52
  input[disabled] {
50
53
  background-color: #e9e9ed;
@@ -146,7 +146,7 @@ class User < ApplicationRecord
146
146
  end
147
147
 
148
148
  def first_first_name
149
- nombre.strip.split.first.presence || to_s
149
+ (nombre || '').strip.split.first.presence || to_s
150
150
  rescue StandardError => e
151
151
  # :nocov:
152
152
  pg_warn(e)
@@ -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] ? [ 800, 600 ] : [ 1024, 768 ]) %>
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"),
@@ -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#internal_error'
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'
@@ -37,8 +37,8 @@
37
37
 
38
38
  FactoryBot.define do
39
39
  factory :user, class: 'User' do
40
- nombre { '' }
41
- apellido { '' }
40
+ nombre { nil }
41
+ apellido { nil }
42
42
  email { Faker::Internet.email }
43
43
  password { "password#{rand(99_999)}" }
44
44
  confirmed_at { Faker::Date.backward }
@@ -19,4 +19,11 @@ RSpec.describe User do
19
19
  expect(results).to eq [user]
20
20
  end
21
21
  end
22
+
23
+ describe '#first_first_name' do
24
+ it do
25
+ user = create(:user, nombre: 'Juan Carlos')
26
+ expect(user.first_first_name).to eq 'Juan'
27
+ end
28
+ end
22
29
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  # :nocov:
4
4
  module PgRails
5
- VERSION = '7.6.35'
5
+ VERSION = '7.6.36'
6
6
  end
7
7
  # :nocov:
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.35
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-03-11 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails