human_attributes 1.0.0 → 1.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: 92618ffd9b16cf2d40c4359381d8a68734491e4d99a561b47d55920b272d9922
4
- data.tar.gz: 1fd33dbcd0e569f343716869ce5a174ed5b36e9fc88306af039df6c7eb40b8f4
3
+ metadata.gz: 698bc5b6eb3278a9ee71e9a2d48446d09f5eaafeabd1812c9d9de62a7a28fa09
4
+ data.tar.gz: be9b954b735b26603712ce7ac133c9d2c81d5c76c39cbb6f5f79c4e95e68cded
5
5
  SHA512:
6
- metadata.gz: 9359ad032947d6d28d276d00795feb2a6c264c653f456cb390bb5f29ce8fd33e8b1ac5ca8c8ffbf51f7d22f5fa1f276c48162b77ad899169e8295b155953da16
7
- data.tar.gz: e4da77f91c5f8e1adf8c2d2e260e2b0e459684b9807b845ca7e2db5db6ab13cb708c9e78714dc996dd94272f83249d608274c0757b2169125a8fd6ab4b71f8fd
6
+ metadata.gz: ea56f86bea32398c569f7eeec3a35ccd3ef35550d0e7612b9557c586488130099e9e0c5430efdf31598991d59f38b106a45532b361a1991e48f42df2633fc280
7
+ data.tar.gz: 75abffc2f158264e95dfbdc3a4884fcf05e08b24fa776cc33c5930b03547deb89aa95d2a9f035f1fec7689b7e01008c43804fc660699fde6fa55e0fb2550767b
data/.circleci/config.yml CHANGED
@@ -14,7 +14,7 @@ executors:
14
14
  parameters:
15
15
  ruby-version:
16
16
  description: "Ruby version"
17
- default: "2.7"
17
+ default: "3.2"
18
18
  type: string
19
19
  docker:
20
20
  - image: cimg/ruby:<<parameters.ruby-version>>-node
@@ -94,7 +94,7 @@ workflows:
94
94
  - test:
95
95
  matrix:
96
96
  parameters:
97
- ruby-version: ["2.7", "3.1" ]
97
+ ruby-version: ["2.7", "3.1", "3.2"]
98
98
  - deploy:
99
99
  context: org-global
100
100
  filters:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.2
1
+ 3.2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ### 1.1.0
6
+ ##### Changed
7
+
8
+ * Add support for ruby 3.2
9
+
5
10
  ### 1.0.0
6
11
  ##### Removed
7
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_attributes (1.0.0)
4
+ human_attributes (1.1.0)
5
5
  factory_bot
6
6
  rails (>= 4.2.0)
7
7
 
@@ -135,7 +135,7 @@ GEM
135
135
  mini_mime (1.0.3)
136
136
  minitest (5.14.4)
137
137
  nenv (0.3.0)
138
- net-imap (0.3.4)
138
+ net-imap (0.3.6)
139
139
  date
140
140
  net-protocol
141
141
  net-pop (0.1.2)
@@ -144,7 +144,9 @@ GEM
144
144
  timeout
145
145
  net-smtp (0.3.3)
146
146
  net-protocol
147
- nio4r (2.5.8)
147
+ nio4r (2.5.9)
148
+ nokogiri (1.14.0-arm64-darwin)
149
+ racc (~> 1.4)
148
150
  nokogiri (1.14.0-x86_64-darwin)
149
151
  racc (~> 1.4)
150
152
  nokogiri (1.14.0-x86_64-linux)
@@ -257,7 +259,7 @@ GEM
257
259
  term-ansicolor (1.7.1)
258
260
  tins (~> 1.0)
259
261
  thor (1.1.0)
260
- timeout (0.3.1)
262
+ timeout (0.4.0)
261
263
  tins (1.29.1)
262
264
  sync
263
265
  tzinfo (2.0.4)
@@ -269,6 +271,7 @@ GEM
269
271
  zeitwerk (2.4.2)
270
272
 
271
273
  PLATFORMS
274
+ arm64-darwin-22
272
275
  x86_64-darwin-19
273
276
  x86_64-darwin-20
274
277
  x86_64-linux
@@ -1,3 +1,3 @@
1
1
  module HumanAttributes
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: human_attributes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Platanus
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-02-06 00:00:00.000000000 Z
12
+ date: 2023-07-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: factory_bot
@@ -313,7 +313,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
313
313
  - !ruby/object:Gem::Version
314
314
  version: '0'
315
315
  requirements: []
316
- rubygems_version: 3.3.26
316
+ rubygems_version: 3.4.10
317
317
  signing_key:
318
318
  specification_version: 4
319
319
  summary: Gem to generate human readable ActiveRecord attributes
@@ -337,7 +337,6 @@ test_files:
337
337
  - spec/dummy/bin/rails
338
338
  - spec/dummy/bin/rake
339
339
  - spec/dummy/bin/setup
340
- - spec/dummy/config.ru
341
340
  - spec/dummy/config/application.rb
342
341
  - spec/dummy/config/boot.rb
343
342
  - spec/dummy/config/cable.yml
@@ -360,6 +359,7 @@ test_files:
360
359
  - spec/dummy/config/puma.rb
361
360
  - spec/dummy/config/routes.rb
362
361
  - spec/dummy/config/storage.yml
362
+ - spec/dummy/config.ru
363
363
  - spec/dummy/db/migrate/20161113032308_create_purchases.rb
364
364
  - spec/dummy/db/migrate/20211006145358_add_payment_method_to_purchase.rb
365
365
  - spec/dummy/db/migrate/20211103114451_add_shipping_to_purchase.rb