mimoco 1.0.4 → 1.0.7

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: 2aea55e49ea45f19c449c3ae61ca502fdf0df9ffa7aefc653b9dc80f3528e055
4
- data.tar.gz: 94692f33b7d1720a981c3cac717b6881bf98638f062c6f273108ee84cf319cba
3
+ metadata.gz: 4cad9e4dbdb6741efc91d2ecf5024e95129c7bd5fcb5fba74dc5a1085ecd1169
4
+ data.tar.gz: 0c78c46e41c1fa147f29eddb2e2ef6181cadb88c33a1afb68d1f933dc9e2cead
5
5
  SHA512:
6
- metadata.gz: ede0868983a7eab99cf24d023d5ca7ae2a039a44a00131488f8b9960acf1b7bfa08cc5db4095a77d62273d7d0461940f993aff985ba27885a169b0d3fc55a356
7
- data.tar.gz: fe67744d66853e7febe6e410d2cab8bf6eb2d17076b08e58de86f474c174d1e3c8a7457e0f287cce693a30159b63f91a0f82af6311cdd717695fbca8816aa172
6
+ metadata.gz: 14865b05f62f72652f5093b1a5eae303a5daf475f5bf5af7643d7bfcb318dce1e6a1eff1625e666dc8a61b8192dc2c368b1c8e5612f1369e525ba863a2252022
7
+ data.tar.gz: 3b6d21da2351f6f4712d5bcb61a02c199debbf5a963f31a2edb647764beb89533a752b3fe34dd77d097f04cbb585d48140dd23841564c5736ff9304b55803787
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-8.0
1
+ rails-8.1
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.4.4
1
+ ruby-3.4.7
data/README.md CHANGED
@@ -91,7 +91,7 @@ check_models models, ignore_methods: magic_method
91
91
  check_controllers controllers, ignore_methods: %i[magic2 magic3]
92
92
  ```
93
93
 
94
- ## Miscellaneous
94
+ ## License
95
95
 
96
96
  Copyright (c) 2022-2025 Dittmar Krall (www.matiq.com),
97
97
  released under the [MIT license](https://opensource.org/licenses/MIT).
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mimoco
4
- VERSION = "1.0.4" # 2025-06-18
4
+ VERSION = "1.0.7" # 2025-10-31
5
+ # VERSION = "1.0.5" # 2025-10-20 failed
6
+ # VERSION = "1.0.4" # 2025-06-18
5
7
  # VERSION = "1.0.3" # 2024-11-11
6
8
  # VERSION = "1.0.2" # 2024-08-22
7
9
  # VERSION = "1.0.1" # 2024-02-16
@@ -24,6 +24,7 @@ module Minitest
24
24
 
25
25
  def self.public_methods(expected)
26
26
  cls = @klass.new.public_methods(false).sort
27
+ cls.delete_if { |x| /^_/ =~ x }
27
28
  check_equal expected, cls
28
29
  end
29
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mimoco
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  - !ruby/object:Gem::Version
99
99
  version: '0'
100
100
  requirements: []
101
- rubygems_version: 3.6.7
101
+ rubygems_version: 3.6.9
102
102
  specification_version: 4
103
103
  summary: 'Mimoco: some minitests for models and controllers'
104
104
  test_files: []