hanamimastery-cli 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6ae25baa5d3d87c5333041908310b6f87a98ea85d6a9258f343a3e1808b132d6
4
+ data.tar.gz: 91b373599d85a21a6c5e69da01415fe2bd71191fe7b540c0a9496f0fbbe7a00a
5
+ SHA512:
6
+ metadata.gz: 56b10b253dfe0d66669fc13f550ae5c17b0ec70163e00f3fb722e5015eca0a1d989d75b55f6db439b76d727bf35c2c1cb66fc30e225d8630068d4a194ac1951a
7
+ data.tar.gz: 79490b4b3a6c83c55add602361c48c8ca3104563d820aa716a36878d573f67b197d7bca7c5ea8b14f53665b3014a8af63d0b4d340192029f75e51e454efb0bee
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/testdouble/standard
3
+ ruby_version: 2.6
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.2.0
data/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-01-03
4
+
5
+ - Initial release
6
+
7
+ Added initial structure, with basic depdendencies. Gem uses dry-system + zeitwerk for
8
+ dependency management and file loading.
9
+
10
+ ### Features
11
+
12
+ **Unshot episode**
13
+ Removes shot marks from a given article (i.e. ""[🎬 01] ")
14
+
15
+ **Touch**
16
+ Updates the modifiedAt with the current date
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at sebastian@driggl.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in hanamimastery-cli.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "standard", "~> 1.3"
data/Gemfile.lock ADDED
@@ -0,0 +1,87 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hanamimastery-cli (0.1.0)
5
+ dry-cli (<= 1.0)
6
+ dry-configurable (~> 1.0)
7
+ dry-system (~> 1.0)
8
+ zeitwerk (~> 2.6)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ ast (2.4.2)
14
+ concurrent-ruby (1.1.10)
15
+ diff-lcs (1.5.0)
16
+ dry-auto_inject (1.0.0)
17
+ dry-core (~> 1.0, < 2)
18
+ zeitwerk (~> 2.6)
19
+ dry-cli (1.0.0)
20
+ dry-configurable (1.0.1)
21
+ dry-core (~> 1.0, < 2)
22
+ zeitwerk (~> 2.6)
23
+ dry-core (1.0.0)
24
+ concurrent-ruby (~> 1.0)
25
+ zeitwerk (~> 2.6)
26
+ dry-inflector (1.0.0)
27
+ dry-system (1.0.1)
28
+ dry-auto_inject (~> 1.0, < 2)
29
+ dry-configurable (~> 1.0, < 2)
30
+ dry-core (~> 1.0, < 2)
31
+ dry-inflector (~> 1.0, < 2)
32
+ json (2.6.3)
33
+ language_server-protocol (3.17.0.2)
34
+ parallel (1.22.1)
35
+ parser (3.1.3.0)
36
+ ast (~> 2.4.1)
37
+ rainbow (3.1.1)
38
+ rake (13.0.6)
39
+ regexp_parser (2.6.1)
40
+ rexml (3.2.5)
41
+ rspec (3.12.0)
42
+ rspec-core (~> 3.12.0)
43
+ rspec-expectations (~> 3.12.0)
44
+ rspec-mocks (~> 3.12.0)
45
+ rspec-core (3.12.0)
46
+ rspec-support (~> 3.12.0)
47
+ rspec-expectations (3.12.1)
48
+ diff-lcs (>= 1.2.0, < 2.0)
49
+ rspec-support (~> 3.12.0)
50
+ rspec-mocks (3.12.1)
51
+ diff-lcs (>= 1.2.0, < 2.0)
52
+ rspec-support (~> 3.12.0)
53
+ rspec-support (3.12.0)
54
+ rubocop (1.40.0)
55
+ json (~> 2.3)
56
+ parallel (~> 1.10)
57
+ parser (>= 3.1.2.1)
58
+ rainbow (>= 2.2.2, < 4.0)
59
+ regexp_parser (>= 1.8, < 3.0)
60
+ rexml (>= 3.2.5, < 4.0)
61
+ rubocop-ast (>= 1.23.0, < 2.0)
62
+ ruby-progressbar (~> 1.7)
63
+ unicode-display_width (>= 1.4.0, < 3.0)
64
+ rubocop-ast (1.24.1)
65
+ parser (>= 3.1.1.0)
66
+ rubocop-performance (1.15.1)
67
+ rubocop (>= 1.7.0, < 2.0)
68
+ rubocop-ast (>= 0.4.0)
69
+ ruby-progressbar (1.11.0)
70
+ standard (1.20.0)
71
+ language_server-protocol (~> 3.17.0.2)
72
+ rubocop (= 1.40.0)
73
+ rubocop-performance (= 1.15.1)
74
+ unicode-display_width (2.3.0)
75
+ zeitwerk (2.6.6)
76
+
77
+ PLATFORMS
78
+ x86_64-darwin-20
79
+
80
+ DEPENDENCIES
81
+ hanamimastery-cli!
82
+ rake (~> 13.0)
83
+ rspec (~> 3.0)
84
+ standard (~> 1.3)
85
+
86
+ BUNDLED WITH
87
+ 2.4.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Sebastian Wilgosz
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/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Hanamimastery::CLI
2
+
3
+ A set of command line utility scripts helping with producing [Hanami Mastery](https://hanamimastery.com) content.
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ $ bundle add hanamimastery-cli
10
+
11
+ If bundler is not being used to manage dependencies, install the gem by executing:
12
+
13
+ $ gem install hanamimastery-cli
14
+
15
+ ## Usage
16
+
17
+ ```shell
18
+ hanamimastery touch 37
19
+ hanamimastery unshot 37
20
+ ```
21
+
22
+ ## Development
23
+
24
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
25
+
26
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
27
+
28
+ ## Contributing
29
+
30
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hanamimastery-cli. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/hanamimastery-cli/blob/master/CODE_OF_CONDUCT.md).
31
+
32
+ ## License
33
+
34
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
35
+
36
+ ## Code of Conduct
37
+
38
+ Everyone interacting in the Hanamimastery::CLI project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/hanamimastery-cli/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[spec standard]
data/exe/hanamimastery ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "hanamimastery/cli"
6
+
7
+ cli = Dry::CLI.new(Hanamimastery::CLI)
8
+
9
+ cli.call
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'time'
4
+
5
+ module Hanamimastery
6
+ module CLI
7
+ module Commands
8
+ class Touch < Dry::CLI::Command
9
+ desc 'Updates the modifiedAt with the current date'
10
+ argument :episode, type: :integer, required: :true, desc: "Episode's ID to touch"
11
+ option :timestamp, type: :string, default: Time.now.to_s, desc: 'Override modified time'
12
+
13
+ include Deps[
14
+ repository: 'repositories.episodes',
15
+ transformation: 'transformations.touch'
16
+ ]
17
+
18
+ def call(episode:, timestamp:, **)
19
+ timestamp = Time.parse(timestamp)
20
+ content = repository.read(episode)
21
+ processed =
22
+ transformation.call(
23
+ content, timestamp: timestamp
24
+ )
25
+ repository.replace(episode, processed)
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ module Commands
6
+ class Unshot < Dry::CLI::Command
7
+ desc 'Removes shot marks from a given article (i.e. ""[🎬 01] ")'
8
+
9
+ argument :episode, type: :integer, required: true, desc: "Episodes ID to unshot"
10
+
11
+ include Deps[
12
+ repository: 'repositories.episodes',
13
+ transformation: 'hanamimasterytransformations.unshot'
14
+ ]
15
+
16
+ attr_reader :transformation, :repository
17
+
18
+ def call(episode:, **)
19
+ content = repository.read(episode)
20
+ processed = transformation.call(content, one: false)
21
+ repository.replace(episode, processed)
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ module Commands
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,19 @@
1
+ require 'zeitwerk'
2
+ require 'dry-system'
3
+
4
+ module Hanamimastery
5
+ module CLI
6
+ class Container < Dry::System::Container
7
+ use :zeitwerk
8
+
9
+ configure do |config|
10
+ config.component_dirs.add "lib" do |dir|
11
+ dir.namespaces.add "hanamimastery/cli", key: nil
12
+ end
13
+ config.inflector = Dry::Inflector.new do |inflections|
14
+ inflections.acronym('CLI')
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'container'
4
+
5
+ module Hanamimastery
6
+ module CLI
7
+ Deps = Container.injector
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ class Error < StandardError; end
6
+ end
7
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ module Repositories
6
+ class Episodes
7
+ REPO_PATH = '/Users/Sebastian/Projects/hanamimastery/source'
8
+ # Reads the episode file content
9
+ #
10
+ def read(id)
11
+ File.read(find(id))
12
+ end
13
+
14
+ # Replaces the whole file content with the new content
15
+ #
16
+ def replace(id, new_content)
17
+ File.write(find(id), new_content)
18
+ end
19
+
20
+ def exists?(id)
21
+ File.exists?(find(id))
22
+ end
23
+
24
+ private
25
+
26
+ def file_name(id)
27
+ episodes.find { |filename| filename.match?(/^#{id.to_i.to_s}-/)}
28
+ end
29
+
30
+ def find(id)
31
+ [file_path, file_name(id)].join('/')
32
+ end
33
+
34
+ def episodes
35
+ Dir[[file_path, '*'].join('/')].map { |i| i.split('/').last }
36
+ end
37
+
38
+ def file_path
39
+ [REPO_PATH, 'data/episodes'].join('/')
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ module Transformations
6
+ class Touch
7
+ PATTERN = /^modifiedAt\:[[:space:]]"\d{4}-\d{2}-\d{2}"$/
8
+
9
+ # Updates the modifiedAt with the passed date
10
+ #
11
+ def call(content, timestamp: nil)
12
+ timestamp ||= Time.now
13
+ content.gsub(
14
+ PATTERN,
15
+ %(modifiedAt: "#{timestamp.strftime("%Y-%M-%d")}")
16
+ )
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ module Transformations
6
+ class Unshot
7
+ PATTERN = /\[🎬[[:space:]]\d{1,3}\][[:space:]]/
8
+
9
+ # removes shot marks [🎬 01] from the given string
10
+ #
11
+ def call(content, one: false)
12
+ content.gsub(PATTERN, '')
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hanamimastery
4
+ module CLI
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'dry/cli'
4
+
5
+ module Hanamimastery
6
+ module CLI
7
+ require_relative 'cli/version'
8
+ require_relative 'cli/error'
9
+ require_relative 'cli/deps'
10
+ require_relative 'cli/commands'
11
+
12
+ extend Dry::CLI::Registry
13
+
14
+ register 'touch', Commands::Touch
15
+ register 'unshot', Commands::Unshot
16
+ end
17
+ end
@@ -0,0 +1,6 @@
1
+ module Hanamimastery
2
+ module CLI
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hanamimastery-cli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sebastian Wilgosz
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-01-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dry-cli
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "<="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "<="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: dry-configurable
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: dry-system
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: zeitwerk
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.6'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.6'
69
+ description: A set of command line utility scripts helping with producing Hanami Mastery
70
+ content.
71
+ email:
72
+ - sebastian@driggl.com
73
+ executables:
74
+ - hanamimastery
75
+ extensions: []
76
+ extra_rdoc_files: []
77
+ files:
78
+ - ".rspec"
79
+ - ".standard.yml"
80
+ - ".tool-versions"
81
+ - CHANGELOG.md
82
+ - CODE_OF_CONDUCT.md
83
+ - Gemfile
84
+ - Gemfile.lock
85
+ - LICENSE.txt
86
+ - README.md
87
+ - Rakefile
88
+ - exe/hanamimastery
89
+ - lib/hanamimastery/cli.rb
90
+ - lib/hanamimastery/cli/commands.rb
91
+ - lib/hanamimastery/cli/commands/touch.rb
92
+ - lib/hanamimastery/cli/commands/unshot.rb
93
+ - lib/hanamimastery/cli/container.rb
94
+ - lib/hanamimastery/cli/deps.rb
95
+ - lib/hanamimastery/cli/error.rb
96
+ - lib/hanamimastery/cli/repositories/episodes.rb
97
+ - lib/hanamimastery/cli/transformations/touch.rb
98
+ - lib/hanamimastery/cli/transformations/unshot.rb
99
+ - lib/hanamimastery/cli/version.rb
100
+ - sig/hanamimastery/cli.rbs
101
+ homepage: https://github.com/hanamimastery/cli
102
+ licenses:
103
+ - MIT
104
+ metadata:
105
+ allowed_push_host: https://rubygems.org
106
+ homepage_uri: https://github.com/hanamimastery/cli
107
+ source_code_uri: https://github.com/hanamimastery/cli
108
+ changelog_uri: https://github.com/hanamimastery/cli/tree/main/CHANGELOG.md
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 2.6.0
118
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ requirements: []
124
+ rubygems_version: 3.4.1
125
+ signing_key:
126
+ specification_version: 4
127
+ summary: Command line p
128
+ test_files: []