month 2.0.0 → 2.1.0

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: 4eae90e4553fd130639c8f35f5feda52af6a7a4d56ec8631981fd0cadaa1895a
4
- data.tar.gz: 76fb1049ecc66fdd30f145f7623ce978ea8606cd415dca8c20b63978af991b42
3
+ metadata.gz: 1e3aca66897fb2dc1cb5c5c6f2b34d7f5611f0727bed247a0676aeb9cd09dba8
4
+ data.tar.gz: ae9b57770644dd9f62945db5712372743d198e034f8c6dae3b447c0cf78d8eda
5
5
  SHA512:
6
- metadata.gz: 6d6ee334ce0de8c6162fb51ea14950e1d18fe085ce3818f290ab2a578a383853193c2f1606c16886dd978ee1bed750308d90a7eced6a24d7b62c3a1ed69cc71d
7
- data.tar.gz: 15a1e39f3722c920152f3ae36301a149ddf520f7dce91b6591ed6b4c25cdcf5a2f46f6e2221651d8ff82007d93d4f1b46036d4d5fbb527006d646250e9324a47
6
+ metadata.gz: b17a3f52d33950f8dc85449dc934b43470aa6be0c55d33a919b3247a56d1645fe9da491447ce133840ee1859e453255d8ba9bc3da664b2a389cbc52b7486ed7a
7
+ data.tar.gz: 389db54dbe6083a165d169ed4272943fef8ee3d77a6f74f8b8ba575bf152dff3fc91566d7c1cf9666e9a75ef285bdf6509bdbb0e8914ec6362f65e7a0ab94b8d
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.1.0
2
+
3
+ * Added Month#inspect method
4
+
1
5
  # 2.0.0
2
6
 
3
7
  * Changed required_ruby_version to >= 2.6.0
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2022 TIMCRAFT
1
+ Copyright (c) 2014-2025 TIMCRAFT
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person
4
4
  obtaining a copy of this software and associated documentation
data/lib/month.rb CHANGED
@@ -37,6 +37,10 @@ class Month
37
37
 
38
38
  alias_method :iso8601, :to_s
39
39
 
40
+ def inspect
41
+ "<Month: #{to_s}>"
42
+ end
43
+
40
44
  def name
41
45
  NAMES.fetch(@number)
42
46
  end
data/month.gemspec CHANGED
@@ -1,10 +1,10 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'month'
3
- s.version = '2.0.0'
3
+ s.version = '2.1.0'
4
4
  s.license = 'MIT'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Tim Craft']
7
- s.email = ['mail@timcraft.com']
7
+ s.email = ['email@timcraft.com']
8
8
  s.homepage = 'https://github.com/readysteady/month'
9
9
  s.description = 'Ruby gem for working with months'
10
10
  s.summary = 'See description'
metadata CHANGED
@@ -1,18 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: month
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Craft
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-01-24 00:00:00.000000000 Z
10
+ date: 2025-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Ruby gem for working with months
14
13
  email:
15
- - mail@timcraft.com
14
+ - email@timcraft.com
16
15
  executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
@@ -31,7 +30,6 @@ metadata:
31
30
  source_code_uri: https://github.com/readysteady/month
32
31
  bug_tracker_uri: https://github.com/readysteady/month/issues
33
32
  changelog_uri: https://github.com/readysteady/month/blob/main/CHANGES.md
34
- post_install_message:
35
33
  rdoc_options: []
36
34
  require_paths:
37
35
  - lib
@@ -46,8 +44,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
44
  - !ruby/object:Gem::Version
47
45
  version: '0'
48
46
  requirements: []
49
- rubygems_version: 3.2.32
50
- signing_key:
47
+ rubygems_version: 3.6.2
51
48
  specification_version: 4
52
49
  summary: See description
53
50
  test_files: []