mimoco 1.0.3 → 1.0.4

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: 1613f09fef3f8110dfa32da257c5a24b0a087d9286469eaba8f29803f473dbaa
4
- data.tar.gz: fea092ba59796f697acf4372fa2c92b32b7ccff78790dae5a7e9718d6da6de7c
3
+ metadata.gz: 2aea55e49ea45f19c449c3ae61ca502fdf0df9ffa7aefc653b9dc80f3528e055
4
+ data.tar.gz: 94692f33b7d1720a981c3cac717b6881bf98638f062c6f273108ee84cf319cba
5
5
  SHA512:
6
- metadata.gz: 59f2ff22f833d1d601c7adaac6cab731e136b0fc0d315fa2aaca834fa5594e5106478a9a4b19953f91fb8c4765a9bddb9dc7a46035bfb383056d21c26fa174a4
7
- data.tar.gz: 9b1d647e55a2cf572826d0b947032d57adf8d6be8fbbc76e26680ced2313bd6c8481db1ee18c440f3233dc7a4e9ab7cb370ab1ac68b33386106baba10c1b9c27
6
+ metadata.gz: ede0868983a7eab99cf24d023d5ca7ae2a039a44a00131488f8b9960acf1b7bfa08cc5db4095a77d62273d7d0461940f993aff985ba27885a169b0d3fc55a356
7
+ data.tar.gz: fe67744d66853e7febe6e410d2cab8bf6eb2d17076b08e58de86f474c174d1e3c8a7457e0f287cce693a30159b63f91a0f82af6311cdd717695fbca8816aa172
@@ -8,7 +8,7 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: ["3.2", "3.3"]
11
+ ruby: [head, "3.4", "3.2"]
12
12
  gemfile:
13
13
  - Gemfile
14
14
  runs-on: ubuntu-latest
data/.gitignore CHANGED
@@ -1,10 +1,10 @@
1
- .bundle/
2
- coverage/
1
+ # ~/.gitignore included
2
+
3
3
  .watchr
4
4
 
5
- *.gem
6
- *.log
7
- *.lock
5
+ **/*.gem
6
+ **/*.log
7
+ **/*.lock
8
8
 
9
9
  **/db/test.sqlite3*
10
10
  /test/internal/storage/
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.3.6
1
+ ruby-3.4.4
data/Gemfile CHANGED
@@ -5,7 +5,7 @@ gem "rails"
5
5
 
6
6
  group :test do
7
7
  gem "cuco"
8
- gem "ricecream"
8
+ gem "ricecream", require: false
9
9
  gem "simplecov", require: false
10
10
  gem "sqlite3"
11
11
  gem "standard", require: false
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2021-2024 Dittmar Krall (www.matiq.com)
1
+ Copyright (c) 2021-2025 Dittmar Krall (www.matiq.com)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # MiMoCo
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/mimoco.svg)](http://badge.fury.io/rb/mimoco)
4
- [![GEM Downloads](https://img.shields.io/gem/dt/mimoco?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/mimoco)
5
- [![rake](https://github.com/matique/mimoco/actions/workflows/rake.yml/badge.svg)](https://github.com/matique/mimoco/actions/workflows/rake.yml)
6
- [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/standardrb/standard)
7
- [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)
3
+ [![Gem Version](https://img.shields.io/gem/v/mimoco?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/mimoco)
4
+ [![Downloads](https://img.shields.io/gem/dt/mimoco?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/mimoco)
5
+ [![GitHub Build](https://img.shields.io/github/actions/workflow/status/matique/mimoco/rake.yml?logo=github)](https://github.com/matique/mimoco/actions/workflows/rake.yml)
6
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-168AFE.svg)](https://github.com/standardrb/standard)
7
+ [![MIT License](https://img.shields.io/badge/license-MIT-168AFE.svg)](http://choosealicense.com/licenses/mit/)
8
8
 
9
9
  Mimoco (MInitest MOdels COntrollers) DRY
10
10
  your tests by specifying some (trivial) of them via a table.
@@ -93,5 +93,5 @@ check_controllers controllers, ignore_methods: %i[magic2 magic3]
93
93
 
94
94
  ## Miscellaneous
95
95
 
96
- Copyright (c) 2022-2024 Dittmar Krall (www.matiq.com),
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,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mimoco
4
- VERSION = "1.0.3" # 2024-11-11
4
+ VERSION = "1.0.4" # 2025-06-18
5
+ # VERSION = "1.0.3" # 2024-11-11
5
6
  # VERSION = "1.0.2" # 2024-08-22
6
7
  # VERSION = "1.0.1" # 2024-02-16
7
8
  # VERSION = "1.0.0" # 2023-12-06
data/mimoco.gemspec CHANGED
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
17
17
 
18
18
  s.files = `git ls-files`.split("\n")
19
19
  s.require_paths = ["lib"]
20
+ s.required_ruby_version = "~> 3"
20
21
 
21
22
  s.add_development_dependency "combustion"
22
23
  s.add_development_dependency "minitest"
data/test/test_helper.rb CHANGED
@@ -6,7 +6,7 @@ if ENV["COVERAGE"]
6
6
  end
7
7
 
8
8
  require "combustion"
9
- Combustion.path = "test/dummy"
9
+ Combustion.path = "test/internal"
10
10
  Combustion.initialize! :active_record
11
11
 
12
12
  require "rails/test_help"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mimoco
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-11 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: combustion
@@ -62,20 +61,20 @@ files:
62
61
  - mimoco.gemspec
63
62
  - test/controllers/controllers_test.rb
64
63
  - test/controllers/orders_controller_test.rb
65
- - test/dummy/app/controllers/application_controller.rb
66
- - test/dummy/app/controllers/orders_controller.rb
67
- - test/dummy/app/models/application_record.rb
68
- - test/dummy/app/models/order.rb
69
- - test/dummy/app/views/orders/_form.html.erb
70
- - test/dummy/app/views/orders/_order.html.erb
71
- - test/dummy/app/views/orders/edit.html.erb
72
- - test/dummy/app/views/orders/index.html.erb
73
- - test/dummy/app/views/orders/new.html.erb
74
- - test/dummy/app/views/orders/show.html.erb
75
- - test/dummy/config/database.yml
76
- - test/dummy/config/routes.rb
77
- - test/dummy/db/migrate/20141016161801_create_orders.rb
78
- - test/dummy/db/schema.rb
64
+ - test/internal/app/controllers/application_controller.rb
65
+ - test/internal/app/controllers/orders_controller.rb
66
+ - test/internal/app/models/application_record.rb
67
+ - test/internal/app/models/order.rb
68
+ - test/internal/app/views/orders/_form.html.erb
69
+ - test/internal/app/views/orders/_order.html.erb
70
+ - test/internal/app/views/orders/edit.html.erb
71
+ - test/internal/app/views/orders/index.html.erb
72
+ - test/internal/app/views/orders/new.html.erb
73
+ - test/internal/app/views/orders/show.html.erb
74
+ - test/internal/config/database.yml
75
+ - test/internal/config/routes.rb
76
+ - test/internal/db/migrate/20141016161801_create_orders.rb
77
+ - test/internal/db/schema.rb
79
78
  - test/models/models_ignore_test.rb
80
79
  - test/models/models_test.rb
81
80
  - test/models/models_valid_test.rb
@@ -85,23 +84,21 @@ licenses:
85
84
  - MIT
86
85
  metadata:
87
86
  source_code_uri: https://github.com/matique/mimoco
88
- post_install_message:
89
87
  rdoc_options: []
90
88
  require_paths:
91
89
  - lib
92
90
  required_ruby_version: !ruby/object:Gem::Requirement
93
91
  requirements:
94
- - - ">="
92
+ - - "~>"
95
93
  - !ruby/object:Gem::Version
96
- version: '0'
94
+ version: '3'
97
95
  required_rubygems_version: !ruby/object:Gem::Requirement
98
96
  requirements:
99
97
  - - ">="
100
98
  - !ruby/object:Gem::Version
101
99
  version: '0'
102
100
  requirements: []
103
- rubygems_version: 3.5.23
104
- signing_key:
101
+ rubygems_version: 3.6.7
105
102
  specification_version: 4
106
103
  summary: 'Mimoco: some minitests for models and controllers'
107
104
  test_files: []
File without changes
File without changes
File without changes
File without changes