large_text_field 1.1.0 → 1.2.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: 2ee81575e5c9126667153dcdab05b3c7995f9c7abc9d946481fe72d55aaa4fcd
4
- data.tar.gz: '0960c44d3511657d46914997ac4841959d171b990d4ca16014ecf93de04929ee'
3
+ metadata.gz: fff0ae6fef43accd89e4d85adc223752579dc4202cd79eff6ad52bd322f4d7c5
4
+ data.tar.gz: 5a0b69d8d87f8bb86f5ca83b1926e17298e0a7ac2cdba20e502df92c3e22fd0b
5
5
  SHA512:
6
- metadata.gz: 4b4b5149dabedec119f5dace3a36c7274f6a106ac315f60f6da43b05fab26159a0d942806d8d97d789fb1bcf16e0734ea9bb2ec23d4ca7590ea7869848b03757
7
- data.tar.gz: 1ba44d365770a9003d53e26a224939df4755a704d2ddd6c572a4456c2a051f512f009ee97f51ca7424080e5fa5308932ccabccccae0a6e359f80e34eefdef489
6
+ metadata.gz: 14f76e0df0369ef995cecda988176032d20dde40b6fba59bd3c97aa0250bd87b5ac1f40c89dcdc8064d5de4735eaa31e4a06a366a1f83173caa43820ea547457
7
+ data.tar.gz: 6491b14da859550bd9277f22ac4fbc9d89042e06f3798c105b5f47761ff3167b0d65b3168231d542d10b7ccd51181f4eb2b0745357f52e1f820ee2ead50b8090
data/README.md CHANGED
@@ -4,10 +4,6 @@ This gem allows any model to be associated with multiple named text fields. Each
4
4
  characters. Defining new fields on models does not require database migrations. All text fields are stored in a
5
5
  central table that is polymorphically associated with the model, but they act like a column on the same model.
6
6
 
7
- ## Dependencies
8
- * Ruby >= 2.7
9
- * Rails >= 6.0
10
-
11
7
  ## How do I use it?
12
8
  In you Gemfile add:
13
9
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LargeTextField
4
- VERSION = "1.1.0"
4
+ VERSION = "1.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: large_text_field
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-18 00:00:00.000000000 Z
11
+ date: 2024-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: invoca-utils
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '5.2'
33
+ version: '6.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '5.2'
40
+ version: '6.0'
41
41
  description: |
42
42
  Large text fields are kept in a central table, and polymorphically associated with your models.
43
43
  Access and assignment should behave as if it was a column on the same table.
@@ -63,13 +63,12 @@ licenses:
63
63
  - MIT
64
64
  metadata:
65
65
  allowed_push_host: https://rubygems.org
66
- rubygems_mfa_required: 'true'
67
66
  homepage_uri: https://github.com/invoca/large_text_field
68
67
  source_code_uri: https://github.com/invoca/large_text_field
69
68
  documentation_uri: https://github.com/invoca/large_text_field
70
69
  changelog_uri: https://github.com/invoca/large_text_field/blob/master/CHANGELOG.md
71
70
  bug_tracker_uri: https://github.com/invoca/large_text_field/issues
72
- post_install_message:
71
+ post_install_message:
73
72
  rdoc_options: []
74
73
  require_paths:
75
74
  - lib
@@ -77,15 +76,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
76
  requirements:
78
77
  - - ">="
79
78
  - !ruby/object:Gem::Version
80
- version: 2.7.5
79
+ version: '3.1'
81
80
  required_rubygems_version: !ruby/object:Gem::Requirement
82
81
  requirements:
83
82
  - - ">="
84
83
  - !ruby/object:Gem::Version
85
84
  version: '0'
86
85
  requirements: []
87
- rubygems_version: 3.4.13
88
- signing_key:
86
+ rubygems_version: 3.3.27
87
+ signing_key:
89
88
  specification_version: 4
90
89
  summary: Add large text fields to models without database migrations
91
90
  test_files: []