lcsp 1.1.0 → 1.1.1

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/cli.rb +126 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3852dbd1df920676b359825fe61970b24418b2b886957226d816ec209b1a8d7
4
- data.tar.gz: a6254a8de53330e26ba060dba373ef9af0a376b8bae7fc137ec8cc7e5fd4ce2d
3
+ metadata.gz: 6e712e000a8e15ef4b85889acdef9d9148e29047f1062682b4732fc3cbab2be3
4
+ data.tar.gz: 52bee9c3f6dcfb6424a8527b2f4b1a1a8c2ff14a84db52027342f796600565dc
5
5
  SHA512:
6
- metadata.gz: 2c73ee05e699d93d0a9dcba80dba9332a3b7d9d43835f612d415e34e103b935a595f934a613e173a0c0cfb12344e99c695944c3e662c0b7c7d337eee6cb8c5ab
7
- data.tar.gz: 13c876f4a62df38fd8acb77cdf0e3083db3508f355d2ad12d9450f698a59c23ddb476262a7c0bdd1474b57057d5a79bc7f9583f7bc85c0979c45f3149851a419
6
+ metadata.gz: aa994764f5906f9ea8552867012855bcb35e69cef3de26ce5966530849a487630d37062af5cb2a6ae608e17b79db56e7efb5378b72e1f0b72fff0a772790f08d
7
+ data.tar.gz: c98409cf3dd0d5423765e0f504068eaa34832202ba520d62c784ab7f09b7ea6c42f50d425963c397668ad00d308329dde088118583de4f28188290c23a0a73ba
data/bin/cli.rb ADDED
@@ -0,0 +1,126 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'dry/cli'
4
+ require 'fileutils'
5
+ require 'rubygems'
6
+
7
+ # frozen_string_literal: true
8
+
9
+ module CLI
10
+ # lcsp CLI
11
+ module Commands
12
+ extend Dry::CLI::Registry
13
+
14
+ # This class represents a command for printing a solution.
15
+ # It inherits from Dry::CLI::Command and is registered under the 'print' alias.
16
+ class Print < ::Dry::CLI::Command
17
+ # Description of the command.
18
+ desc 'Prints solution'
19
+
20
+ # Option definition for the GitHub user name.
21
+ # Default value is an empty string.
22
+ option :user,
23
+ default: '',
24
+ desc: 'GitHub user name'
25
+
26
+ # Option definition for the GitHub repository with solutions.
27
+ # Default value is an empty string.
28
+ option :repo,
29
+ default: '',
30
+ desc: 'GitHub repository with solutions'
31
+
32
+ # Option definition for the number of needed solution.
33
+ # Default value is an empty string.
34
+ option :number,
35
+ default: '',
36
+ desc: 'Number of needed solution'
37
+
38
+ # The main method of the command.
39
+ # It creates an instance of LCSP::LCSP and calls its start method with the provided options.
40
+ #
41
+ # @param options [Hash] The command-line options.
42
+ # @option options [String] :user The GitHub user name.
43
+ # @option options [String] :repo The GitHub repository with solutions.
44
+ # @option options [String] :number The number of needed solution.
45
+ #
46
+ # @return [void]
47
+ def call(options)
48
+ ::LCSP::LCSP.new.start(
49
+ options[:user],
50
+ options[:repo],
51
+ options[:number]
52
+ )
53
+ end
54
+ end
55
+
56
+ # This class represents a command for cleaning the local cache of LCSP.
57
+ # It inherits from Dry::CLI::Command and is registered under the 'clean' alias.
58
+ class Clean < ::Dry::CLI::Command
59
+ # Description of the command.
60
+ desc 'Clean lscp cache'
61
+
62
+ # The main method of the command.
63
+ # It removes all folders in the current directory that start with 'cache_'.
64
+ #
65
+ # @return [void]
66
+ def call
67
+ # Get all entries in the current directory.
68
+ folders = ::Dir.entries('.').select { |entry| entry.include?('cache_') }
69
+
70
+ # Iterate over the selected folders and remove them.
71
+ folders.each { |folder| ::FileUtils.rm_rf(folder) }
72
+ end
73
+ end
74
+
75
+ # This class represents a command for printing the version of LCSP.
76
+ # It inherits from Dry::CLI::Command and is registered under the 'version' alias.
77
+ class Version < ::Dry::CLI::Command
78
+ # Description of the command.
79
+ desc 'Prints using version of lcsp'
80
+
81
+ # The main method of the command.
82
+ # It retrieves the version of the lcsp gem from its gemspec file and prints it.
83
+ #
84
+ # @return [void]
85
+ def call
86
+ # Load the lcsp gem specification.
87
+ spec = ::Gem::Specification.load('lcsp.gemspec')
88
+
89
+ # Print the version of the lcsp gem.
90
+ puts(spec.version)
91
+ end
92
+ end
93
+
94
+ # This class represents a command for printing the author of LCSP.
95
+ # It inherits from Dry::CLI::Command and is registered under the 'author' alias.
96
+ class Author < ::Dry::CLI::Command
97
+ # Description of the command.
98
+ desc 'Prints the author of lcsp'
99
+
100
+ # The main method of the command.
101
+ # It retrieves the author, email, and homepage information of the lcsp gem from its gemspec file and prints it.
102
+ #
103
+ # @return [void]
104
+ def call
105
+ # Load the lcsp gem specification.
106
+ spec = ::Gem::Specification.load('lcsp.gemspec')
107
+
108
+ # Print the author(s) of the lcsp gem.
109
+ puts("Authors: #{spec.authors.join(', ').strip}")
110
+
111
+ # Print the email(s) of the lcsp gem author(s).
112
+ puts("Email: #{spec.email}")
113
+
114
+ # Print the homepage of the lcsp gem.
115
+ puts("Homepage: #{spec.homepage}")
116
+ end
117
+ end
118
+
119
+ register 'print', Print.new, aliases: ['p']
120
+ register 'clean', Clean.new, aliases: ['c']
121
+ register 'version', Version.new, aliases: ['v']
122
+ register 'author', Author.new, aliases: ['a']
123
+ end
124
+ end
125
+
126
+ ::Dry::CLI.new(::CLI::Commands).call
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lcsp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Fomchenkov
@@ -132,6 +132,7 @@ extra_rdoc_files:
132
132
  files:
133
133
  - LICENSE
134
134
  - README.md
135
+ - bin/cli.rb
135
136
  - bin/lcsp
136
137
  - lib/lcsp.rb
137
138
  - lib/lcsp/cache.rb