mimoco 1.0.1 → 1.0.2
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 +4 -4
- data/.github/workflows/rake.yml +0 -1
- data/.gitignore +1 -0
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/Gemfile +2 -1
- data/MIT-LICENSE +1 -3
- data/README.md +1 -1
- data/lib/mimoco/version.rb +2 -1
- data/lib/mimoco_base.rb +1 -0
- data/mimoco.gemspec +0 -1
- metadata +3 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55881f4bb2a6bbbb55fb1cc84b89a39f45aaa8bc523b00fdf85f8f0f433286bb
|
|
4
|
+
data.tar.gz: 71b5d2172c7e844f00bd335222a447678a21e7c4dd6ab73243ce6fbf8422ee4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20af7bf9fa4a8a336c0baeed618d5f228d681e9a042708a9562a46da707998b24a178585ece1e18e7a7b43c1f77de031113ccd90e673cd4590f7edfc555f8392
|
|
7
|
+
data.tar.gz: b65fba30259a4f002f8a6d9c81b3808df93f67a73759adc2eb876cd02e64bb671cddcf888ab8ffe3cdc578634b40bb38bfebb1b5acf828403a492148dfc7b5eb
|
data/.github/workflows/rake.yml
CHANGED
data/.gitignore
CHANGED
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
rails-7.
|
|
1
|
+
rails-7.2
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-3.3.
|
|
1
|
+
ruby-3.3.4
|
data/Gemfile
CHANGED
data/MIT-LICENSE
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021-2023 Dittmar Krall (www.matiq.com)
|
|
1
|
+
Copyright (c) 2021-2024 Dittmar Krall (www.matiq.com)
|
|
4
2
|
|
|
5
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
4
|
a copy of this software and associated documentation files (the
|
data/README.md
CHANGED
|
@@ -89,5 +89,5 @@ check_controllers controllers, ignore_methods: %i[magic2 magic3]
|
|
|
89
89
|
|
|
90
90
|
## Miscellaneous
|
|
91
91
|
|
|
92
|
-
Copyright (c) 2022-
|
|
92
|
+
Copyright (c) 2022-2024 Dittmar Krall (www.matiq.com),
|
|
93
93
|
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/lib/mimoco/version.rb
CHANGED
data/lib/mimoco_base.rb
CHANGED
|
@@ -40,6 +40,7 @@ module Minitest
|
|
|
40
40
|
methods.delete_if { |x| /^_/ =~ x }
|
|
41
41
|
methods.delete_if { |x| /^(after|before|find_by)_/ =~ x }
|
|
42
42
|
methods.delete_if { |x| /.*_associated_records_.*/ =~ x }
|
|
43
|
+
methods.delete_if { |x| /.*_association_names/ =~ x }
|
|
43
44
|
methods2 = @klass.superclass.send(which, false).sort
|
|
44
45
|
methods - methods2 - @ignore - ignore2
|
|
45
46
|
end
|
data/mimoco.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mimoco
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: combustion
|
|
@@ -38,20 +38,6 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: sqlite3
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - ">="
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '0'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - ">="
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '0'
|
|
55
41
|
description: Some testing for models and controllers
|
|
56
42
|
email:
|
|
57
43
|
- dittmar.krall@matiq.com
|
|
@@ -114,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
114
100
|
- !ruby/object:Gem::Version
|
|
115
101
|
version: '0'
|
|
116
102
|
requirements: []
|
|
117
|
-
rubygems_version: 3.5.
|
|
103
|
+
rubygems_version: 3.5.11
|
|
118
104
|
signing_key:
|
|
119
105
|
specification_version: 4
|
|
120
106
|
summary: 'Mimoco: some minitests for models and controllers'
|