deco_lite 1.3.0 → 1.5.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: beccc94d1fa8bec7ddba7ffbc0399eb37089d9e4379ca505536e91492f7b7f52
4
- data.tar.gz: 6b4196a5605d7521bfc8554e7794acc4df7056dbbc05f14f8075ae3d2b0a19ae
3
+ metadata.gz: bfe42551208817f6d8defeffff77d48c346e3bb91bb9019602be547ac19164ca
4
+ data.tar.gz: 2c8e065b64b0b59a9c47499ece27840522e2055e3c5156e7be68816a6bd4570e
5
5
  SHA512:
6
- metadata.gz: c919d0514806dbe1acdea2bb9f544ee385587223a2a3f7cfeb4540c7995315fda1798ea6f15071f3e6a5fe41f4b3a2fb17faabbf67d8aaf0b7351cef1856846d
7
- data.tar.gz: '0938c6d2069d7e094172fd8e710c44484be8a67638ee9cf234da6ab24e82c9d455f79bf5042a15576a86a28699be3412d3092b0169047c6d16811d9befcbe061'
6
+ metadata.gz: 6131b7d8f442930809923adccae7bf3c716373b337ef84af699c809f4bdd7236837f9ece6ad66e44fe6ac8d9f9b3f56c7e27c31dae85e2d83dd4a58fca31b77a
7
+ data.tar.gz: 1ae15d3493079c9562d3a8280bf5c92cafd1caeef5beb69b1abd48cf3fb02a7fcd37290d3dca98b9cecc94d3a538ffe25abc8e5270a35bbe03327044437a14f2
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ require:
3
3
  - rubocop-rspec
4
4
 
5
5
  AllCops:
6
- TargetRubyVersion: 3.0.1
6
+ TargetRubyVersion: 3.1.2
7
7
  NewCops: enable
8
8
  Exclude:
9
9
  - '.git/**/*'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.1.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ### 1.5.0
2
+ * Changes
3
+ * Update ruby gems.
4
+
5
+ ### 1.4.0
6
+ * Changes
7
+ * Required ruby version is now '~> 3.0'
8
+ * Prohibit SimpleCov from starting 2x in spec_helper.rb.
9
+
1
10
  ### 1.3.0
2
11
  * Changes
3
12
  * Update gem description in .gemspec.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- deco_lite (1.3.0)
4
+ deco_lite (1.5.0)
5
5
  activemodel (~> 7.0, >= 7.0.3.1)
6
6
  activesupport (~> 7.0, >= 7.0.3.1)
7
7
  immutable_struct_ex (~> 0.2.0)
@@ -50,35 +50,35 @@ GEM
50
50
  rainbow (>= 2.0, < 4.0)
51
51
  regexp_parser (2.6.0)
52
52
  rexml (3.2.5)
53
- rspec (3.11.0)
54
- rspec-core (~> 3.11.0)
55
- rspec-expectations (~> 3.11.0)
56
- rspec-mocks (~> 3.11.0)
57
- rspec-core (3.11.0)
58
- rspec-support (~> 3.11.0)
59
- rspec-expectations (3.11.1)
53
+ rspec (3.12.0)
54
+ rspec-core (~> 3.12.0)
55
+ rspec-expectations (~> 3.12.0)
56
+ rspec-mocks (~> 3.12.0)
57
+ rspec-core (3.12.0)
58
+ rspec-support (~> 3.12.0)
59
+ rspec-expectations (3.12.0)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.11.0)
62
- rspec-mocks (3.11.1)
61
+ rspec-support (~> 3.12.0)
62
+ rspec-mocks (3.12.0)
63
63
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.11.0)
65
- rspec-support (3.11.1)
66
- rubocop (1.36.0)
64
+ rspec-support (~> 3.12.0)
65
+ rspec-support (3.12.0)
66
+ rubocop (1.38.0)
67
67
  json (~> 2.3)
68
68
  parallel (~> 1.10)
69
69
  parser (>= 3.1.2.1)
70
70
  rainbow (>= 2.2.2, < 4.0)
71
71
  regexp_parser (>= 1.8, < 3.0)
72
72
  rexml (>= 3.2.5, < 4.0)
73
- rubocop-ast (>= 1.20.1, < 2.0)
73
+ rubocop-ast (>= 1.23.0, < 2.0)
74
74
  ruby-progressbar (~> 1.7)
75
75
  unicode-display_width (>= 1.4.0, < 3.0)
76
- rubocop-ast (1.21.0)
76
+ rubocop-ast (1.23.0)
77
77
  parser (>= 3.1.1.0)
78
78
  rubocop-performance (1.15.0)
79
79
  rubocop (>= 1.7.0, < 2.0)
80
80
  rubocop-ast (>= 0.4.0)
81
- rubocop-rspec (2.13.2)
81
+ rubocop-rspec (2.15.0)
82
82
  rubocop (~> 1.33)
83
83
  ruby-progressbar (1.11.0)
84
84
  simplecov (0.21.2)
data/deco_lite.gemspec CHANGED
@@ -46,7 +46,7 @@ Gem::Specification.new do |spec|
46
46
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
47
47
  spec.require_paths = ['lib']
48
48
 
49
- spec.required_ruby_version = '~> 3.0.1'
49
+ spec.required_ruby_version = Gem::Requirement.new("~> 3.0")
50
50
 
51
51
  spec.add_runtime_dependency 'activemodel', '~> 7.0', '>= 7.0.3.1'
52
52
  spec.add_runtime_dependency 'activesupport', '~> 7.0', '>= 7.0.3.1'
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Defines the version of this gem.
4
4
  module DecoLite
5
- VERSION = '1.3.0'
5
+ VERSION = '1.5.0'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deco_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-04 00:00:00.000000000 Z
11
+ date: 2022-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -303,14 +303,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
303
303
  requirements:
304
304
  - - "~>"
305
305
  - !ruby/object:Gem::Version
306
- version: 3.0.1
306
+ version: '3.0'
307
307
  required_rubygems_version: !ruby/object:Gem::Requirement
308
308
  requirements:
309
309
  - - ">="
310
310
  - !ruby/object:Gem::Version
311
311
  version: '0'
312
312
  requirements: []
313
- rubygems_version: 3.3.22
313
+ rubygems_version: 3.3.7
314
314
  signing_key:
315
315
  specification_version: 4
316
316
  summary: Dynamically creates an active model from a Hash.