lcsp 1.1.0 → 1.2.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: d3852dbd1df920676b359825fe61970b24418b2b886957226d816ec209b1a8d7
4
- data.tar.gz: a6254a8de53330e26ba060dba373ef9af0a376b8bae7fc137ec8cc7e5fd4ce2d
3
+ metadata.gz: 16e91d0da69256bc676adfc9781e20d13ab9e8838de68624be502a6b86aebfb6
4
+ data.tar.gz: bfa5f3b8fb5bd4b895962680698d5c53312406377d92ced04a7af541a7baf66b
5
5
  SHA512:
6
- metadata.gz: 2c73ee05e699d93d0a9dcba80dba9332a3b7d9d43835f612d415e34e103b935a595f934a613e173a0c0cfb12344e99c695944c3e662c0b7c7d337eee6cb8c5ab
7
- data.tar.gz: 13c876f4a62df38fd8acb77cdf0e3083db3508f355d2ad12d9450f698a59c23ddb476262a7c0bdd1474b57057d5a79bc7f9583f7bc85c0979c45f3149851a419
6
+ metadata.gz: 16a986eda1844a8be0a2322faf352aa69ed376e2fb05b35e2baf454e4df2798f73b4cf68607f9dc0d1a6c868a8751ab20b33cdfbf8fe423b7dbd68c2a8872ccf
7
+ data.tar.gz: b28f8f08681cbda9244f9fbb2ad4b35ee52e1a69c4a1f43c8901cb8a50abce0b4ca4a2333455778b39835322ec7b96d316711737f3d8639019bd6da73291007e
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Artem Fomchenkov
3
+ Copyright (c) 2023-2025 Artem Fomchenkov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,44 +1,96 @@
1
1
  # lcsp
2
2
 
3
- [![GitHubActions](https://github.com/fartem/distincter2/workflows/Build/badge.svg)](https://github.com/fartem/distincter2/actions?branch=master)
3
+ [![GitHubActions](https://github.com/fartem/lcsp/workflows/Build/badge.svg)](https://github.com/fartem/lcsp/actions?branch=master)
4
4
  [![codebeat badge](https://codebeat.co/badges/eca07972-3b5a-4b3c-a424-a277ce8128b7)](https://codebeat.co/projects/github-com-fartem-lcsp-master)
5
5
  [![Gem Version](https://badge.fury.io/rb/lcsp.svg)](https://badge.fury.io/rb/lcsp)
6
6
  [![Gem Downloads](https://img.shields.io/gem/dt/lcsp)](https://badge.fury.io/rb/lcsp)
7
7
 
8
8
  ## About
9
9
 
10
- A tool for showing solutions from LeetCode.
10
+ A tool for showing and counting solutions from LeetCode.
11
11
 
12
12
  ## How to use
13
13
 
14
14
  ### Installation
15
15
 
16
- Soon.
16
+ #### Download gem from RubyGems
17
17
 
18
- ### Run
18
+ ```shell
19
+ $ gem i lcsp
20
+ ```
21
+
22
+ #### As local installed gem
23
+
24
+ Build and install gem from sources:
25
+
26
+ ```shell
27
+ $ gem build lcsp.gemspec
28
+ $ gem i lcsp
29
+ ```
30
+
31
+ ### Print solution
19
32
 
20
- You need to provide 3 arguments for run `lcsp`:
33
+ You need to provide 3 arguments for run `print` command:
21
34
 
22
- | Parameter number | Description | Example |
23
- |------------------|-------------------|-----------------|
24
- | 1 | GitHub user name | `fartem` |
25
- | 2 | Repository name | `leetcode-ruby` |
26
- | 3 | Number of problem | `11` |
35
+ | Parameter | Description | Example |
36
+ | --------- | ----------------- | --------------- |
37
+ | `user` | GitHub user name | `fartem` |
38
+ | `repo` | Repository name | `leetcode-ruby` |
39
+ | `number` | Number of problem | `11` |
27
40
 
28
41
  One of valid input variants be like:
29
42
 
30
43
  ```shell
31
- $ lcsp fartem leetcode-ruby 11
44
+ $ lcsp print --user=fartem --repo=leetcode-ruby --number=11
45
+ ```
46
+
47
+ ### Count solutions
48
+
49
+ You need to provide 2 arguments for run `count` command:
50
+
51
+ | Parameter | Description | Example |
52
+ | --------- | ---------------- | --------------- |
53
+ | `user` | GitHub user name | `fartem` |
54
+ | `repo` | Repository name | `leetcode-ruby` |
55
+
56
+ One of valid input variants be like:
57
+
58
+ ```shell
59
+ $ lcsp count --user=fartem --repo=leetcode-ruby
60
+ ```
61
+
62
+ ### Clean local cache
63
+
64
+ Just run next command from any folder:
65
+
66
+ ```shell
67
+ $ lcsp clean
68
+ ```
69
+
70
+ ### Contacts
71
+
72
+ You can see actual author contacts by following command:
73
+
74
+ ```shell
75
+ $ lcsp author
32
76
  ```
33
77
 
34
- ### How to write your own `LCSPResolver`
78
+ ### Version
79
+
80
+ If you need to check installed version of `lcsp`, run from shell:
81
+
82
+ ```shell
83
+ $ lcsp author
84
+ ```
85
+
86
+ ### How to write your own `LCSPFinder`
35
87
 
36
88
  #### Read before start
37
89
 
38
- `lcsp` works with custom resolvers - classes that should placed in your project and that will perform
90
+ `lcsp` works with custom finders - classes that should placed in your project and that will perform
39
91
  search locally.
40
92
 
41
- You need to write resolver classes in Ruby because only this format accepting right now, but all work
93
+ You need to write finder classes in Ruby because only this format accepting right now, but all work
42
94
  around search and parse for your repository you can place in classes/scripts/files in any other programming language.
43
95
 
44
96
  One of the correct and working example available
@@ -65,10 +117,6 @@ module LCSP
65
117
  # @return {String}
66
118
  def solution
67
119
  end
68
-
69
- # @param {String} path
70
- # @param {String[]} dirs
71
- def fill_directories(path, dirs) end
72
120
  end
73
121
  end
74
122
  ```
@@ -114,6 +162,75 @@ module LCSP
114
162
  end
115
163
  ```
116
164
 
165
+ ### How to write your own `LCSCCounter`
166
+
167
+ #### Read before start
168
+
169
+ `lcsc` works with custom counters - classes that should placed in your project and that will perform
170
+ count locally.
171
+
172
+ You need to write counter classes in Ruby because only this format accepting right now, but all work
173
+ around search and parse for your repository you can place in classes/scripts/files in any other programming language.
174
+
175
+ One of the correct and working example available
176
+ by [this link](https://github.com/fartem/leetcode-ruby/blob/master/lcsp/counter.rb).
177
+
178
+ #### Template class
179
+
180
+ `path` are default parameter that are presenting for every repository. It is a path to repository in cache.
181
+
182
+ ```ruby
183
+ # frozen_string_literal: true
184
+
185
+ require 'find'
186
+
187
+ module LCSC
188
+ # Solutions counter.
189
+ class LCSCCounter
190
+ # @param {String} path
191
+ def initialize
192
+ @path = './'
193
+ end
194
+
195
+ # @return {Integer}
196
+ def count
197
+ dir_sub = "#{@path}/lib"
198
+
199
+ easy = find_for_dir("#{dir_sub}/easy")
200
+ medium = find_for_dir("#{dir_sub}/medium")
201
+
202
+ easy + medium
203
+ end
204
+
205
+ private
206
+
207
+ def find_for_dir(dir)
208
+ ::Find.find(dir).count { |file| ::File.file?(file) }
209
+ end
210
+ end
211
+ end
212
+ ```
213
+
214
+ #### Reference class example
215
+
216
+ ```ruby
217
+ # frozen_string_literal: true
218
+
219
+ module LCSC
220
+ # Solutions counter.
221
+ class LCSCFinder
222
+ # @param {String} path
223
+ def initialize(path)
224
+ @path = path
225
+ end
226
+
227
+ # @return {Integer}
228
+ def count
229
+ end
230
+ end
231
+ end
232
+ ```
233
+
117
234
  ## Contributors
118
235
 
119
236
  * [@fartem](https://github.com/fartem) as Artem Fomchenkov
data/bin/cli.rb ADDED
@@ -0,0 +1,155 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'dry/cli'
4
+ require 'fileutils'
5
+ require 'rubygems'
6
+
7
+ module CLI
8
+ # lcsp CLI
9
+ module Commands
10
+ extend Dry::CLI::Registry
11
+
12
+ # This class represents a command for printing a solution.
13
+ # It inherits from Dry::CLI::Command and is registered under the 'print' alias.
14
+ class Print < ::Dry::CLI::Command
15
+ # Description of the command.
16
+ desc 'Prints solution'
17
+
18
+ # Option definition for the GitHub user name.
19
+ # Default value is an empty string.
20
+ option :user,
21
+ default: '',
22
+ desc: 'GitHub user name'
23
+
24
+ # Option definition for the GitHub repository with solutions.
25
+ # Default value is an empty string.
26
+ option :repo,
27
+ default: '',
28
+ desc: 'GitHub repository with solutions'
29
+
30
+ # Option definition for the number of needed solution.
31
+ # Default value is an empty string.
32
+ option :number,
33
+ default: '',
34
+ desc: 'Number of needed solution'
35
+
36
+ # The main method of the command.
37
+ # It creates an instance of LCSP::LCSP and calls its start method with the provided options.
38
+ #
39
+ # @param options [Hash] The command-line options.
40
+ # @option options [String] :user The GitHub user name.
41
+ # @option options [String] :repo The GitHub repository with solutions.
42
+ # @option options [String] :number The number of needed solution.
43
+ #
44
+ # @return [void]
45
+ def call(options)
46
+ ::LCSP::LCSP.new.start(
47
+ options[:user],
48
+ options[:repo],
49
+ options[:number]
50
+ )
51
+ end
52
+ end
53
+
54
+ # This class represents a command for counting solutions.
55
+ # It inherits from Dry::CLI::Command and is registered under the 'count' alias.
56
+ class Count < ::Dry::CLI::Command
57
+ desc 'Counts solutions'
58
+
59
+ option :user,
60
+ default: '',
61
+ desc: 'GitHub user name'
62
+
63
+ option :repo,
64
+ default: '',
65
+ desc: 'GitHub repository with solutions'
66
+
67
+ # The main method of the command.
68
+ # It creates an instance of LCSC::LCSC and calls its start method with the provided options.
69
+ #
70
+ # @param options [Hash] The command-line options.
71
+ # @option options [String] :user The GitHub user name.
72
+ # @option options [String] :repo The GitHub repository with solutions.
73
+ #
74
+ # @return [void]
75
+ def call(options)
76
+ ::LCSC::LCSC.new.start(
77
+ options[:user],
78
+ options[:repo],
79
+ options[:number]
80
+ )
81
+ end
82
+ end
83
+
84
+ # This class represents a command for cleaning the local cache of LCSP.
85
+ # It inherits from Dry::CLI::Command and is registered under the 'clean' alias.
86
+ class Clean < ::Dry::CLI::Command
87
+ # Description of the command.
88
+ desc 'Clean lscp cache'
89
+
90
+ # The main method of the command.
91
+ # It removes all folders in the current directory that start with 'cache_'.
92
+ #
93
+ # @return [void]
94
+ def call
95
+ # Get all entries in the current directory.
96
+ folders = ::Dir.entries('.').select { |entry| entry.include?('cache_') }
97
+
98
+ # Iterate over the selected folders and remove them.
99
+ folders.each { |folder| ::FileUtils.rm_rf(folder) }
100
+ end
101
+ end
102
+
103
+ # This class represents a command for printing the version of LCSP.
104
+ # It inherits from Dry::CLI::Command and is registered under the 'version' alias.
105
+ class Version < ::Dry::CLI::Command
106
+ # Description of the command.
107
+ desc 'Prints using version of lcsp'
108
+
109
+ # The main method of the command.
110
+ # It retrieves the version of the lcsp gem from its gemspec file and prints it.
111
+ #
112
+ # @return [void]
113
+ def call
114
+ # Load the lcsp gem specification.
115
+ spec = ::Gem::Specification.load('lcsp.gemspec')
116
+
117
+ # Print the version of the lcsp gem.
118
+ puts(spec.version)
119
+ end
120
+ end
121
+
122
+ # This class represents a command for printing the author of LCSP.
123
+ # It inherits from Dry::CLI::Command and is registered under the 'author' alias.
124
+ class Author < ::Dry::CLI::Command
125
+ # Description of the command.
126
+ desc 'Prints the author of lcsp'
127
+
128
+ # The main method of the command.
129
+ # It retrieves the author, email, and homepage information of the lcsp gem from its gemspec file and prints it.
130
+ #
131
+ # @return [void]
132
+ def call
133
+ # Load the lcsp gem specification.
134
+ spec = ::Gem::Specification.load('lcsp.gemspec')
135
+
136
+ # Print the author(s) of the lcsp gem.
137
+ puts("Authors: #{spec.authors.join(', ').strip}")
138
+
139
+ # Print the email(s) of the lcsp gem author(s).
140
+ puts("Email: #{spec.email}")
141
+
142
+ # Print the homepage of the lcsp gem.
143
+ puts("Homepage: #{spec.homepage}")
144
+ end
145
+ end
146
+
147
+ register 'print', Print.new, aliases: ['p']
148
+ register 'count', Count.new, aliases: ['t']
149
+ register 'clean', Clean.new, aliases: ['c']
150
+ register 'version', Version.new, aliases: ['v']
151
+ register 'author', Author.new, aliases: ['a']
152
+ end
153
+ end
154
+
155
+ ::Dry::CLI.new(::CLI::Commands).call
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../common/cache'
4
+
5
+ module LCSC
6
+ # LCSCResolver logic.
7
+ class LCSCResolver
8
+ # LCSCResolver is entry point for any LCSP request by user.
9
+ #
10
+ # @param user [String] The GitHub username of the user.
11
+ # @param repository [String] The name of the repository containing the LCSP problem.
12
+ def initialize(user, repository)
13
+ @user = user
14
+ @repository = repository
15
+ end
16
+
17
+ # Resolves the LCSC by creating an LCSPCache instance, locating the LCSCCounter file,
18
+ # requiring it, and then creating an LCSCCounter instance to find the solution.
19
+ #
20
+ # @return [String] The solution to the LCSP problem.
21
+ # @return [nil] If the LCSPFinder file is not found or the solution is not found.
22
+ def resolve
23
+ cache = ::LCSP::LCSPCache.new(@user, @repository)
24
+ finder_path = "#{cache.path}/lcsp/counter.rb"
25
+
26
+ unless ::File.exist?(finder_path)
27
+ puts('counter.rb not found in repository. Please, check config and try again.')
28
+
29
+ exit(1)
30
+ end
31
+
32
+ require_relative(finder_path)
33
+
34
+ count = ::LCSC::LCSCCounter.new(cache.path).count
35
+
36
+ if count.nil?
37
+ puts('Failed to count solutions. Please, check your input and try again.')
38
+
39
+ exit(2)
40
+ end
41
+
42
+ count
43
+ end
44
+ end
45
+ end
data/lib/lcsc.rb ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rouge'
4
+ require 'rouge/cli'
5
+
6
+ require_relative './lcsc/resolver'
7
+
8
+ module LCSC
9
+ # This class represents the main functionality of the LCSC (LeetCode Solution Counter) tool.
10
+ class LCSC
11
+ # Starts the LCSC tool.
12
+ #
13
+ # @param user [String] The GitHub username of the repository owner.
14
+ # @param repository [String] The name of the GitHub repository.
15
+ #
16
+ # @return [Integer] The exit status of the Rouge CLI tool after processing the resolved LCSP.
17
+ def start(user, repository)
18
+ output = ::LCSC::LCSCResolver.new(user, repository).resolve
19
+
20
+ ::Rouge::CLI.parse([output]).run
21
+ end
22
+ end
23
+ end
data/lib/lcsp/resolver.rb CHANGED
@@ -1,12 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative './cache'
3
+ require_relative '../common/cache'
4
4
 
5
5
  module LCSP
6
- # LCSPResolver logic
6
+ # LCSPResolver logic.
7
7
  class LCSPResolver
8
- # LCSPResolver is responsible for resolving the Least Common Subsequence Problem (LCSP)
9
- # for a given user, repository, and problem number.
8
+ # LCSPResolver is entry point for any LCSP request by user.
10
9
  #
11
10
  # @param user [String] The GitHub username of the user.
12
11
  # @param repository [String] The name of the repository containing the LCSP problem.
data/lib/lcsp.rb CHANGED
@@ -6,10 +6,9 @@ require 'rouge/cli'
6
6
  require_relative './lcsp/resolver'
7
7
 
8
8
  module LCSP
9
- # This class represents the main functionality of the LCSP (Longest Common Subsequence Problem) tool.
9
+ # This class represents the main functionality of the LCSP (LeetCode Solution Printer) tool.
10
10
  class LCSP
11
- # Starts the LCSP tool by resolving the longest common subsequence for a given user, repository,
12
- # and pull request number.
11
+ # Starts the LCSP tool.
13
12
  #
14
13
  # @param user [String] The GitHub username of the repository owner.
15
14
  # @param repository [String] The name of the GitHub repository.
@@ -18,6 +17,7 @@ module LCSP
18
17
  # @return [Integer] The exit status of the Rouge CLI tool after processing the resolved LCSP.
19
18
  def start(user, repository, number)
20
19
  output = ::LCSP::LCSPResolver.new(user, repository, number).resolve
20
+
21
21
  ::Rouge::CLI.parse([output]).run
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
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.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Fomchenkov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-20 00:00:00.000000000 Z
11
+ date: 2025-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli
@@ -132,9 +132,12 @@ extra_rdoc_files:
132
132
  files:
133
133
  - LICENSE
134
134
  - README.md
135
+ - bin/cli.rb
135
136
  - bin/lcsp
137
+ - lib/common/cache.rb
138
+ - lib/lcsc.rb
139
+ - lib/lcsc/resolver.rb
136
140
  - lib/lcsp.rb
137
- - lib/lcsp/cache.rb
138
141
  - lib/lcsp/resolver.rb
139
142
  homepage: https://github.com/fartem/lcsp
140
143
  licenses:
@@ -156,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
159
  - !ruby/object:Gem::Version
157
160
  version: '0'
158
161
  requirements: []
159
- rubygems_version: 3.4.10
162
+ rubygems_version: 3.5.23
160
163
  signing_key:
161
164
  specification_version: 4
162
165
  summary: A tool for showing solutions from LeetCode
File without changes