imap 0.4.3 → 0.4.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: e81ccc78552de60b7572c00689364274012b24af157f81fdd21c4caa4a8b31dc
4
- data.tar.gz: 432db4843d22cf60959de2ea0fe0ab43ecd1fc2da4c8b0858ef5045e24a57174
3
+ metadata.gz: 2b76876b4d1c1ddc5defaa94a8890166b334c133312ca17a8b809364aaba585b
4
+ data.tar.gz: d6b4bdf67504e50422fda5d737ae5311060b38fbf5f3f754daad45bb292a154f
5
5
  SHA512:
6
- metadata.gz: 2dafa33325fcc4b61c9fa6a9d79ade8319b7b1c0a6738fd7f233f491cab209e6a65dc6d36a82a443263dbffb9fba6ac6a4be5fa56106a639703cc52f4176768b
7
- data.tar.gz: 8bcb54f18b64616cad2e6220da09a3f70c04e29c3aa33e7cc8824535f1dc7e402c8bddfa3523b5ad8e9bdfe11805eeb2c70edb2b66217b90f9ec08bd22642426
6
+ metadata.gz: c5360236b3f337c04191d7debe88a74ab44e30adf242565973baf1aee561b6deb57cf96f2e1c52d4d0c680e32f4517eccabae5ac7ccf18be961ed60e9ce0c5ee
7
+ data.tar.gz: bc7a2e7096757a0274ffc54b3136537f646f3ad3a150f2ef2fca3ea960a5410a600942d09e1d49c1231b8f7ab199b7b2265e87a921b04f9186b39f64fb593a9d
data/CHANGELOG CHANGED
@@ -1,5 +1,12 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.4.4] - 2026-09-17, + Rakefile, - test/test_all.rb
4
+ - + Rakefile: Rake::TestTask over FileList['test/**/*_test.rb'], with libs for lib and test, and warning = true. The minimal form nine of the gems here use rather than the fuller one five use: the :spec alias and the :version task belong to the minority, and a :version task reading VERSION.rb would not have caught 0.4.1, where require 'imap' left Imap::VERSION undefined while VERSION.rb sat there defining it. rake has been a development dependency since 0.4.0 with nothing here to run.
5
+ - - test/test_all.rb: a second entry point which the Rakefile's FileList makes redundant, and which had drifted from the files on disk in two ways: it never loaded test/Imap/VERSION_test.rb, added in 0.4.2, so it ran 42 tests where there are 44; and it required './Imap_test' for a file named imap_test.rb, which resolved only because the filesystem is case insensitive and would not have on Linux. A glob cannot drift. 14 of the 16 gems here with a Rakefile carry no such file; switches keeps spec/all.rb because its Rakefile targets it, and bitget carries the same redundancy this removes.
6
+ - ~ test/Imap/Message_test.rb: must_match(/Mock body/) for must_match /Mock body/, the ambiguous / which warning = true reports and which is the only warning the suite raises.
7
+ - ~ imap.gemspec: + 'Rakefile' to spec.files, as eodhd, switches and moby have.
8
+ - ~ Imap::VERSION: /0.4.3/0.4.4/
9
+
3
10
  ## [0.4.3] - 2026-09-17, ~ test/test_helper.rb: + require 'minitest/mock', which minitest 6 no longer brings
4
11
  - ~ test/test_helper.rb: + `require 'minitest/mock'`. 35 of the 42 tests call stub and not one of them could: the suite answered "42 runs, 7 assertions, 0 failures, 35 errors". minitest 5's autorun required minitest/mock and shipped it, so the suite ran until minitest 6 dropped both the require and the file; the same thing coinmarketcap 0.6.1 found.
5
12
  - ~ imap.gemspec: + minitest-mock as a development dependency, which minitest ~> 5.0 carried and minitest 6 does not.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # Rakefile
2
+
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << 'lib'
7
+ t.libs << 'test'
8
+ t.test_files = FileList['test/**/*_test.rb']
9
+ t.warning = true
10
+ end
11
+
12
+ task default: :test
data/imap.gemspec CHANGED
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
29
29
  Dir['lib/**/*.rb'],
30
30
  Dir['test/**/*.rb'],
31
31
  'CHANGELOG',
32
+ 'Rakefile',
32
33
  'LICENSE',
33
34
  'README.md',
34
35
  ].flatten
data/lib/Imap/VERSION.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Imap
2
- VERSION = '0.4.3'
2
+ VERSION = '0.4.4'
3
3
  end
@@ -32,7 +32,7 @@ describe Imap::Message do
32
32
 
33
33
  describe '#body' do
34
34
  it 'returns the message body' do
35
- _(imap_message.body).must_match /Mock body/
35
+ _(imap_message.body).must_match(/Mock body/)
36
36
  end
37
37
 
38
38
  it 'caches the result' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
@@ -75,6 +75,7 @@ files:
75
75
  - CHANGELOG
76
76
  - LICENSE
77
77
  - README.md
78
+ - Rakefile
78
79
  - imap.gemspec
79
80
  - lib/Imap/Message.rb
80
81
  - lib/Imap/Search.rb
@@ -84,7 +85,6 @@ files:
84
85
  - test/Imap/Search_test.rb
85
86
  - test/Imap/VERSION_test.rb
86
87
  - test/imap_test.rb
87
- - test/test_all.rb
88
88
  - test/test_helper.rb
89
89
  homepage: https://github.com/thoran/imap
90
90
  licenses:
data/test/test_all.rb DELETED
@@ -1,6 +0,0 @@
1
- # test/test_all.rb
2
-
3
- require_relative './test_helper'
4
- require_relative './Imap_test'
5
- require_relative './Imap/Message_test'
6
- require_relative './Imap/Search_test'