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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1796b354edbe98b20ea8aadfdf251b0c9729741df6960747cd68e678996d7451
4
- data.tar.gz: d21b500b222ec94c01425d329bac0bbf2182492baaceffdd4d20a52d685576f7
3
+ metadata.gz: 55881f4bb2a6bbbb55fb1cc84b89a39f45aaa8bc523b00fdf85f8f0f433286bb
4
+ data.tar.gz: 71b5d2172c7e844f00bd335222a447678a21e7c4dd6ab73243ce6fbf8422ee4b
5
5
  SHA512:
6
- metadata.gz: 37dd105bd461a6538047de9c27f046e46881474abebf878094b5e6c8567a52e1210d8f5ad0a8ca4f7530f80d40c291f831ddb80e8c01b8fbfa9728a62099a2d6
7
- data.tar.gz: 134215525e99400306ae22f85f28a021fa47a91a37f7dc74ee712080635f19a9396edfa01766be4f2d087be1273f1c36eaf3e7c39339587efac14c5fd3fb035a
6
+ metadata.gz: 20af7bf9fa4a8a336c0baeed618d5f228d681e9a042708a9562a46da707998b24a178585ece1e18e7a7b43c1f77de031113ccd90e673cd4590f7edfc555f8392
7
+ data.tar.gz: b65fba30259a4f002f8a6d9c81b3808df93f67a73759adc2eb876cd02e64bb671cddcf888ab8ffe3cdc578634b40bb38bfebb1b5acf828403a492148dfc7b5eb
@@ -11,7 +11,6 @@ jobs:
11
11
  ruby: ["3.0", "3.2", 3.3]
12
12
  gemfile:
13
13
  - Gemfile
14
- # - gemfiles/Gemfile.rails-7.1
15
14
  runs-on: ubuntu-latest
16
15
 
17
16
  steps:
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  .bundle/
2
2
  coverage/
3
+ .watchr
3
4
 
4
5
  *.gem
5
6
  *.log
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-7.1
1
+ rails-7.2
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.3.0
1
+ ruby-3.3.4
data/Gemfile CHANGED
@@ -4,8 +4,9 @@ gemspec
4
4
  gem "rails"
5
5
 
6
6
  group :test do
7
- gem "observr"
7
+ gem "cuco"
8
8
  gem "ricecream"
9
9
  gem "simplecov", require: false
10
+ gem "sqlite3"
10
11
  gem "standard", require: false
11
12
  end
data/MIT-LICENSE CHANGED
@@ -1,6 +1,4 @@
1
- The MIT License (MIT)
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-2023 Dittmar Krall (www.matiq.com),
92
+ Copyright (c) 2022-2024 Dittmar Krall (www.matiq.com),
93
93
  released under the [MIT license](https://opensource.org/licenses/MIT).
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mimoco
4
- VERSION = "1.0.1" # 2024-02-16
4
+ VERSION = "1.0.2" # 2024-08-22
5
+ # VERSION = "1.0.1" # 2024-02-16
5
6
  # VERSION = "1.0.0" # 2023-12-06
6
7
  # VERSION = "0.3.2" # 2023-04-25
7
8
  # VERSION = "0.3.1" # 2022-12-25
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
@@ -20,5 +20,4 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.add_development_dependency "combustion"
22
22
  s.add_development_dependency "minitest"
23
- s.add_development_dependency "sqlite3"
24
23
  end
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.1
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-02-18 00:00:00.000000000 Z
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.6
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'