mcalendar 0.6.4 → 0.6.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 +4 -4
- data/.travis.yml +6 -6
- data/LICENSE.txt +21 -21
- data/Rakefile +11 -11
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/exe/mcalendar +5 -5
- data/lib/mcalendar/version.rb +1 -1
- data/mcalendar.gemspec +32 -32
- data/mcalendar.yml +58 -9
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c20e36793d2429bb19ec670fc4471666708d922e348fca9b128cb56a8e078d51
|
4
|
+
data.tar.gz: c11fb061a1e6b0d54661fb126dbffa5232ed795d9d927d8dd21c1ddc3f48171d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36e47e508bec599956cf1267bea90f23cb70d283bef620ba6df1d0b7439266e14b0ab235dc3089f51230697448fc5333dfdc372571537282b03bafaab3ed3ab7
|
7
|
+
data.tar.gz: 61fda23c53934bcbcece8201df86c6f4b5a49238bc221f293da170a3c63a3f834d25a7dba6ca81798f95939932ae07296a53a0554c1da8d37f927e1e74f50ba9
|
data/.travis.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
---
|
2
|
-
language: ruby
|
3
|
-
cache: bundler
|
4
|
-
rvm:
|
5
|
-
- 2.6.5
|
6
|
-
before_install: gem install bundler -v 2.1.4
|
1
|
+
---
|
2
|
+
language: ruby
|
3
|
+
cache: bundler
|
4
|
+
rvm:
|
5
|
+
- 2.6.5
|
6
|
+
before_install: gem install bundler -v 2.1.4
|
data/LICENSE.txt
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2020 icm7216
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 icm7216
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/Rakefile
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
2
|
-
require "rake/testtask"
|
3
|
-
|
4
|
-
Rake::TestTask.new(:test) do |t|
|
5
|
-
t.libs << "test"
|
6
|
-
t.libs << "lib"
|
7
|
-
t.test_files = FileList["test/**/*_test.rb"]
|
8
|
-
t.options = "-v"
|
9
|
-
end
|
10
|
-
|
11
|
-
task :default => :test
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
3
|
+
|
4
|
+
Rake::TestTask.new(:test) do |t|
|
5
|
+
t.libs << "test"
|
6
|
+
t.libs << "lib"
|
7
|
+
t.test_files = FileList["test/**/*_test.rb"]
|
8
|
+
t.options = "-v"
|
9
|
+
end
|
10
|
+
|
11
|
+
task :default => :test
|
data/bin/console
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "mcalendar"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mcalendar"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
#!/usr/bin/env bash
|
2
|
-
set -euo pipefail
|
3
|
-
IFS=$'\n\t'
|
4
|
-
set -vx
|
5
|
-
|
6
|
-
bundle install
|
7
|
-
|
8
|
-
# Do any other automated setup that you need to do here
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -euo pipefail
|
3
|
+
IFS=$'\n\t'
|
4
|
+
set -vx
|
5
|
+
|
6
|
+
bundle install
|
7
|
+
|
8
|
+
# Do any other automated setup that you need to do here
|
data/exe/mcalendar
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "mcalendar"
|
4
|
-
|
5
|
-
Mcalendar::Command.run(ARGV)
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "mcalendar"
|
4
|
+
|
5
|
+
Mcalendar::Command.run(ARGV)
|
data/lib/mcalendar/version.rb
CHANGED
data/mcalendar.gemspec
CHANGED
@@ -1,32 +1,32 @@
|
|
1
|
-
require_relative 'lib/mcalendar/version'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = "mcalendar"
|
5
|
-
spec.version = Mcalendar::VERSION
|
6
|
-
spec.authors = ["icm7216"]
|
7
|
-
spec.email = ["icm7216d@gmail.com"]
|
8
|
-
|
9
|
-
spec.summary = %q{Ruby Monthly calendar}
|
10
|
-
spec.description = %q{Ruby Monthly Calendar, Console and pdf}
|
11
|
-
spec.homepage = "https://github.com/icm7216/mcalendar"
|
12
|
-
spec.license = "MIT"
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
-
|
15
|
-
# Specify which files should be added to the gem when it is released.
|
16
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
17
|
-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
18
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
-
end
|
20
|
-
spec.bindir = "exe"
|
21
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
-
spec.require_paths = ["lib"]
|
23
|
-
|
24
|
-
spec.add_runtime_dependency "prawn"
|
25
|
-
spec.add_runtime_dependency "prawn-table"
|
26
|
-
|
27
|
-
spec.add_development_dependency "test-unit"
|
28
|
-
spec.add_development_dependency "test-unit-rr"
|
29
|
-
spec.add_development_dependency "prawn"
|
30
|
-
spec.add_development_dependency "prawn-table"
|
31
|
-
spec.add_development_dependency "rake"
|
32
|
-
end
|
1
|
+
require_relative 'lib/mcalendar/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "mcalendar"
|
5
|
+
spec.version = Mcalendar::VERSION
|
6
|
+
spec.authors = ["icm7216"]
|
7
|
+
spec.email = ["icm7216d@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{Ruby Monthly calendar}
|
10
|
+
spec.description = %q{Ruby Monthly Calendar, Console and pdf}
|
11
|
+
spec.homepage = "https://github.com/icm7216/mcalendar"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
# Specify which files should be added to the gem when it is released.
|
16
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
17
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
18
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_runtime_dependency "prawn"
|
25
|
+
spec.add_runtime_dependency "prawn-table"
|
26
|
+
|
27
|
+
spec.add_development_dependency "test-unit"
|
28
|
+
spec.add_development_dependency "test-unit-rr"
|
29
|
+
spec.add_development_dependency "prawn"
|
30
|
+
spec.add_development_dependency "prawn-table"
|
31
|
+
spec.add_development_dependency "rake"
|
32
|
+
end
|
data/mcalendar.yml
CHANGED
@@ -78,6 +78,45 @@ holiday:
|
|
78
78
|
20241103: Culture Day
|
79
79
|
20241104: Substitute Holiday
|
80
80
|
20241123: Labour Thanksgiving Day
|
81
|
+
# 2025
|
82
|
+
20250101: New Year's Day
|
83
|
+
20250113: Coming-of-age Day
|
84
|
+
20250211: National Foundation Day
|
85
|
+
20250223: Emperor's Birthday
|
86
|
+
20250224: Substitute Holiday
|
87
|
+
20250320: Vernal Equinox Day
|
88
|
+
20250429: Showa Day
|
89
|
+
20250503: Constitution Memorial Day
|
90
|
+
20250504: Greenery Day
|
91
|
+
20250505: Children's Day
|
92
|
+
20250506: Substitute Holiday
|
93
|
+
20250721: Marine Day
|
94
|
+
20250811: Mountain Day
|
95
|
+
20250915: Respect for the Aged Day
|
96
|
+
20250923: Autumnal Equinox Day
|
97
|
+
20251013: Sports Day
|
98
|
+
20251103: Culture Day
|
99
|
+
20251123: Labour Thanksgiving Day
|
100
|
+
20251124: Substitute Holiday
|
101
|
+
# 2026
|
102
|
+
20260101: New Year's Day
|
103
|
+
20260112: Coming-of-age Day
|
104
|
+
20260211: National Foundation Day
|
105
|
+
20260223: Emperor's Birthday
|
106
|
+
20260320: Vernal Equinox Day
|
107
|
+
20260429: Showa Day
|
108
|
+
20260503: Constitution Memorial Day
|
109
|
+
20260504: Greenery Day
|
110
|
+
20260505: Children's Day
|
111
|
+
20260506: Substitute Holiday
|
112
|
+
20260720: Marine Day
|
113
|
+
20260811: Mountain Day
|
114
|
+
20260921: Respect for the Aged Day
|
115
|
+
20260922: Substitute Holiday
|
116
|
+
20260923: Autumnal Equinox Day
|
117
|
+
20261012: Sports Day
|
118
|
+
20261103: Culture Day
|
119
|
+
20261123: Labour Thanksgiving Day
|
81
120
|
|
82
121
|
anniversary:
|
83
122
|
# 2021
|
@@ -87,16 +126,26 @@ anniversary:
|
|
87
126
|
20210911: RubyKaigi Takeout 2021
|
88
127
|
# 2022
|
89
128
|
20220224: Ruby's Birthday
|
90
|
-
20220908: RubyKaigi 2022
|
91
|
-
20220909: RubyKaigi 2022
|
92
|
-
20220910: RubyKaigi 2022
|
129
|
+
20220908: RubyKaigi 2022 in Mie
|
130
|
+
20220909: RubyKaigi 2022 in Mie
|
131
|
+
20220910: RubyKaigi 2022 in Mie
|
93
132
|
# 2023
|
94
133
|
20230224: Ruby's Birthday
|
95
|
-
20230511: RubyKaigi 2023
|
96
|
-
20230512: RubyKaigi 2023
|
97
|
-
20230513: RubyKaigi 2023
|
134
|
+
20230511: RubyKaigi 2023 in Matsumoto
|
135
|
+
20230512: RubyKaigi 2023 in Matsumoto
|
136
|
+
20230513: RubyKaigi 2023 in Matsumoto
|
98
137
|
# 2024
|
99
138
|
20240224: Ruby's Birthday
|
100
|
-
20240515: RubyKaigi 2024
|
101
|
-
20240516: RubyKaigi 2024
|
102
|
-
20240517: RubyKaigi 2024
|
139
|
+
20240515: RubyKaigi 2024 in Okinawa
|
140
|
+
20240516: RubyKaigi 2024 in Okinawa
|
141
|
+
20240517: RubyKaigi 2024 in Okinawa
|
142
|
+
# 2025
|
143
|
+
20250224: Ruby's Birthday
|
144
|
+
20250416: RubyKaigi 2025 in Matsuyama
|
145
|
+
20250417: RubyKaigi 2025 in Matsuyama
|
146
|
+
20250418: RubyKaigi 2025 in Matsuyama
|
147
|
+
# 2026
|
148
|
+
20260224: Ruby's Birthday
|
149
|
+
# 2026xxxx: RubyKaigi 2026
|
150
|
+
# 2026xxxx: RubyKaigi 2026
|
151
|
+
# 2026xxxx: RubyKaigi 2026
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mcalendar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- icm7216
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: prawn
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
- !ruby/object:Gem::Version
|
157
157
|
version: '0'
|
158
158
|
requirements: []
|
159
|
-
rubygems_version: 3.5.
|
159
|
+
rubygems_version: 3.5.22
|
160
160
|
signing_key:
|
161
161
|
specification_version: 4
|
162
162
|
summary: Ruby Monthly calendar
|