imap 0.4.4 → 0.4.5

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: 2b76876b4d1c1ddc5defaa94a8890166b334c133312ca17a8b809364aaba585b
4
- data.tar.gz: d6b4bdf67504e50422fda5d737ae5311060b38fbf5f3f754daad45bb292a154f
3
+ metadata.gz: 78ec20b3a5517359526f4c5e0437a05b1ab97be444c1e1c741992f1ea595376e
4
+ data.tar.gz: d5d2ac27eb982ff25264eaf947ee71981fba45cfc645b34dcce8148617a4c790
5
5
  SHA512:
6
- metadata.gz: c5360236b3f337c04191d7debe88a74ab44e30adf242565973baf1aee561b6deb57cf96f2e1c52d4d0c680e32f4517eccabae5ac7ccf18be961ed60e9ce0c5ee
7
- data.tar.gz: bc7a2e7096757a0274ffc54b3136537f646f3ad3a150f2ef2fca3ea960a5410a600942d09e1d49c1231b8f7ab199b7b2265e87a921b04f9186b39f64fb593a9d
6
+ metadata.gz: 6a470cbf282ff1c1b84e6283b8e6a882262e02379eb03a50a65657346624667f576c5f14fecc1471ac94be2d6fe83bdca7f0d57ba76d65f613330662527c8e50
7
+ data.tar.gz: 9754404cd62da6dfd26caa4e9c0ef3a7023704ff8f99da0864e57835a605b7c1dd04d4f992e35700184802ca1e6f075734ac89e3767234b1fd8cafb674f27315
data/CHANGELOG CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.4.5] - 2026-09-17, + Gemfile; ~ imap.gemspec: dependencies=, - spec.date, + metadata
4
+ - + Gemfile: source and gemspec, as switches, eodhd and moby have it, so that the dependencies are declared once in the gemspec rather than restated here to drift. bitget and coinmarketcap restate theirs and are the minority. This was the only gem here with no Gemfile at all.
5
+ - ~ imap.gemspec: + 'Gemfile' to spec.files, which every other gem here ships.
6
+ - ~ imap.gemspec: dependencies= and development_dependencies= through the Gem::Specification extension, as switches, eodhd and moby have it and as bitget, coinmarketcap and this did not. The constraints survive: the splat takes a bare string or a [name, constraint] pair alike.
7
+ - ~ imap.gemspec: - spec.date = '2025-12-20', nine months and two versions stale, and the last one left in the estate. RubyGems answers 1980-01-02 in its place, the reproducible-build epoch, which is what coinmarketcap has carried since dropping its own at 0.6.0.
8
+ - ~ imap.gemspec: + metadata, the four uris switches and moby declare, so that the RubyGems page links to the issues, the changelog, the source and the README. master here where moby says main, each by the branch it is on.
9
+ - ~ Imap::VERSION: /0.4.4/0.4.5/
10
+
3
11
  ## [0.4.4] - 2026-09-17, + Rakefile, - test/test_all.rb
4
12
  - + 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
13
  - - 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.
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/imap.gemspec CHANGED
@@ -2,11 +2,20 @@
2
2
 
3
3
  require_relative './lib/Imap/VERSION'
4
4
 
5
+ class Gem::Specification
6
+ def dependencies=(gems)
7
+ gems.each{|gem| add_dependency(*gem)}
8
+ end
9
+
10
+ def development_dependencies=(gems)
11
+ gems.each{|gem| add_development_dependency(*gem)}
12
+ end
13
+ end
14
+
5
15
  Gem::Specification.new do |spec|
6
16
  spec.name = 'imap'
7
17
 
8
18
  spec.version = Imap::VERSION
9
- spec.date = '2025-12-20'
10
19
 
11
20
  spec.summary = "IMAP for Ruby made easy."
12
21
  spec.description = "A Ruby wrapper around Net::IMAP with an elegant DSL for searching, reading, and managing email."
@@ -18,20 +27,32 @@ Gem::Specification.new do |spec|
18
27
 
19
28
  spec.required_ruby_version = '>= 2.7'
20
29
 
21
- spec.add_dependency 'net-imap', "~> 0.4"
30
+ spec.dependencies = [
31
+ ['net-imap', '~> 0.4']
32
+ ]
22
33
 
23
- spec.add_development_dependency 'minitest', '~> 5.0'
24
- spec.add_development_dependency 'minitest-mock'
25
- spec.add_development_dependency 'rake', '~> 13.0'
34
+ spec.development_dependencies = [
35
+ ['minitest', '~> 5.0'],
36
+ 'minitest-mock',
37
+ ['rake', '~> 13.0']
38
+ ]
26
39
 
27
40
  spec.files = [
28
41
  'imap.gemspec',
29
42
  Dir['lib/**/*.rb'],
30
43
  Dir['test/**/*.rb'],
31
44
  'CHANGELOG',
45
+ 'Gemfile',
32
46
  'Rakefile',
33
47
  'LICENSE',
34
48
  'README.md',
35
49
  ].flatten
36
50
  spec.require_paths = ['lib']
51
+
52
+ spec.metadata = {
53
+ "bug_tracker_uri" => "https://github.com/thoran/imap/issues",
54
+ "changelog_uri" => "https://github.com/thoran/imap/blob/master/CHANGELOG",
55
+ "source_code_uri" => "https://github.com/thoran/imap",
56
+ "documentation_uri" => "https://github.com/thoran/imap/blob/master/README.md"
57
+ }
37
58
  end
data/lib/Imap/VERSION.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Imap
2
- VERSION = '0.4.4'
2
+ VERSION = '0.4.5'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-12-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: net-imap
@@ -73,6 +73,7 @@ extensions: []
73
73
  extra_rdoc_files: []
74
74
  files:
75
75
  - CHANGELOG
76
+ - Gemfile
76
77
  - LICENSE
77
78
  - README.md
78
79
  - Rakefile
@@ -89,7 +90,11 @@ files:
89
90
  homepage: https://github.com/thoran/imap
90
91
  licenses:
91
92
  - MIT
92
- metadata: {}
93
+ metadata:
94
+ bug_tracker_uri: https://github.com/thoran/imap/issues
95
+ changelog_uri: https://github.com/thoran/imap/blob/master/CHANGELOG
96
+ source_code_uri: https://github.com/thoran/imap
97
+ documentation_uri: https://github.com/thoran/imap/blob/master/README.md
93
98
  rdoc_options: []
94
99
  require_paths:
95
100
  - lib