lcsp 1.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 +7 -0
- data/LICENSE +21 -0
- data/README.md +119 -0
- data/bin/lcsp +7 -0
- data/lib/lcsp/cache.rb +44 -0
- data/lib/lcsp/resolver.rb +48 -0
- data/lib/lcsp.rb +24 -0
- metadata +163 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d3852dbd1df920676b359825fe61970b24418b2b886957226d816ec209b1a8d7
|
4
|
+
data.tar.gz: a6254a8de53330e26ba060dba373ef9af0a376b8bae7fc137ec8cc7e5fd4ce2d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2c73ee05e699d93d0a9dcba80dba9332a3b7d9d43835f612d415e34e103b935a595f934a613e173a0c0cfb12344e99c695944c3e662c0b7c7d337eee6cb8c5ab
|
7
|
+
data.tar.gz: 13c876f4a62df38fd8acb77cdf0e3083db3508f355d2ad12d9450f698a59c23ddb476262a7c0bdd1474b57057d5a79bc7f9583f7bc85c0979c45f3149851a419
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 Artem Fomchenkov
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
# lcsp
|
2
|
+
|
3
|
+
[](https://github.com/fartem/distincter2/actions?branch=master)
|
4
|
+
[](https://codebeat.co/projects/github-com-fartem-lcsp-master)
|
5
|
+
[](https://badge.fury.io/rb/lcsp)
|
6
|
+
[](https://badge.fury.io/rb/lcsp)
|
7
|
+
|
8
|
+
## About
|
9
|
+
|
10
|
+
A tool for showing solutions from LeetCode.
|
11
|
+
|
12
|
+
## How to use
|
13
|
+
|
14
|
+
### Installation
|
15
|
+
|
16
|
+
Soon.
|
17
|
+
|
18
|
+
### Run
|
19
|
+
|
20
|
+
You need to provide 3 arguments for run `lcsp`:
|
21
|
+
|
22
|
+
| Parameter number | Description | Example |
|
23
|
+
|------------------|-------------------|-----------------|
|
24
|
+
| 1 | GitHub user name | `fartem` |
|
25
|
+
| 2 | Repository name | `leetcode-ruby` |
|
26
|
+
| 3 | Number of problem | `11` |
|
27
|
+
|
28
|
+
One of valid input variants be like:
|
29
|
+
|
30
|
+
```shell
|
31
|
+
$ lcsp fartem leetcode-ruby 11
|
32
|
+
```
|
33
|
+
|
34
|
+
### How to write your own `LCSPResolver`
|
35
|
+
|
36
|
+
#### Read before start
|
37
|
+
|
38
|
+
`lcsp` works with custom resolvers - classes that should placed in your project and that will perform
|
39
|
+
search locally.
|
40
|
+
|
41
|
+
You need to write resolver classes in Ruby because only this format accepting right now, but all work
|
42
|
+
around search and parse for your repository you can place in classes/scripts/files in any other programming language.
|
43
|
+
|
44
|
+
One of the correct and working example available
|
45
|
+
by [this link](https://github.com/fartem/leetcode-ruby/blob/master/lcsp/finder.rb).
|
46
|
+
|
47
|
+
#### Template class
|
48
|
+
|
49
|
+
`path` and `number` are default parameters that are presenting for every repository. This arguments describes user needs
|
50
|
+
and gives you parameters to search.
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
# frozen_string_literal: true
|
54
|
+
|
55
|
+
module LCSP
|
56
|
+
# Solutions finder.
|
57
|
+
class LCSPFinder
|
58
|
+
# @param {String} path
|
59
|
+
# @param {String} number
|
60
|
+
def initialize(path, number)
|
61
|
+
@path = path
|
62
|
+
@number = number
|
63
|
+
end
|
64
|
+
|
65
|
+
# @return {String}
|
66
|
+
def solution
|
67
|
+
end
|
68
|
+
|
69
|
+
# @param {String} path
|
70
|
+
# @param {String[]} dirs
|
71
|
+
def fill_directories(path, dirs) end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
```
|
75
|
+
|
76
|
+
#### Reference class example
|
77
|
+
|
78
|
+
```ruby
|
79
|
+
# frozen_string_literal: true
|
80
|
+
|
81
|
+
module LCSP
|
82
|
+
# Solutions finder.
|
83
|
+
class LCSPFinder
|
84
|
+
# @param {String} path
|
85
|
+
# @param {String} number
|
86
|
+
def initialize(path, number)
|
87
|
+
@path = path
|
88
|
+
@number = number
|
89
|
+
end
|
90
|
+
|
91
|
+
# @return {String}
|
92
|
+
def solution
|
93
|
+
dirs = []
|
94
|
+
fill_directories(@path, dirs)
|
95
|
+
|
96
|
+
dirs.each do |directory|
|
97
|
+
::Dir.foreach(directory) do |entry|
|
98
|
+
return "#{directory}/#{entry}" if entry.start_with?(@number)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
# @param {String} path
|
104
|
+
# @param {String[]} dirs
|
105
|
+
def fill_directories(path, dirs)
|
106
|
+
::Dir.foreach(path).reject { |name| name.start_with?('.') }.each do |entry|
|
107
|
+
unless ::File.file?("#{path}/#{entry}")
|
108
|
+
dirs << "#{path}/#{entry}"
|
109
|
+
fill_directories("#{path}/#{entry}", dirs)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
```
|
116
|
+
|
117
|
+
## Contributors
|
118
|
+
|
119
|
+
* [@fartem](https://github.com/fartem) as Artem Fomchenkov
|
data/bin/lcsp
ADDED
data/lib/lcsp/cache.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'faraday'
|
4
|
+
require 'git'
|
5
|
+
|
6
|
+
module LCSP
|
7
|
+
# Base LCSP cache
|
8
|
+
class LCSPCache
|
9
|
+
# This class is responsible for managing a local cache of a specified GitHub repository.
|
10
|
+
# It clones the repository if it does not already exist in the cache directory.
|
11
|
+
|
12
|
+
# Initializes a new instance of LCSPCache.
|
13
|
+
#
|
14
|
+
# @param user [String] The GitHub username of the repository owner.
|
15
|
+
# @param repository [String] The name of the repository.
|
16
|
+
def initialize(user, repository)
|
17
|
+
@user = user
|
18
|
+
@repository = repository
|
19
|
+
|
20
|
+
return if exists?
|
21
|
+
|
22
|
+
::Git.clone(
|
23
|
+
URI("https://github.com/#{@user}/#{@repository.downcase}"),
|
24
|
+
::Pathname.new("cache_#{@user}-#{@repository.downcase}")
|
25
|
+
)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Returns the path to the local cache directory for the specified repository.
|
29
|
+
#
|
30
|
+
# @return [String] The path to the local cache directory.
|
31
|
+
def path
|
32
|
+
"#{::Dir.pwd}/cache_#{@user}-#{@repository.downcase}"
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
# Checks if the local cache directory for the specified repository already exists.
|
38
|
+
#
|
39
|
+
# @return [Boolean] True if the directory exists, false otherwise.
|
40
|
+
def exists?
|
41
|
+
::File.exist?("#{::Dir.pwd}/cache_#{@user}-#{@repository.downcase}")
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative './cache'
|
4
|
+
|
5
|
+
module LCSP
|
6
|
+
# LCSPResolver logic
|
7
|
+
class LCSPResolver
|
8
|
+
# LCSPResolver is responsible for resolving the Least Common Subsequence Problem (LCSP)
|
9
|
+
# for a given user, repository, and problem number.
|
10
|
+
#
|
11
|
+
# @param user [String] The GitHub username of the user.
|
12
|
+
# @param repository [String] The name of the repository containing the LCSP problem.
|
13
|
+
# @param number [Integer] The problem number for which the LCSP needs to be resolved.
|
14
|
+
def initialize(user, repository, number)
|
15
|
+
@user = user
|
16
|
+
@repository = repository
|
17
|
+
@number = number
|
18
|
+
end
|
19
|
+
|
20
|
+
# Resolves the LCSP by creating an LCSPCache instance, locating the LCSPFinder file,
|
21
|
+
# requiring it, and then creating an LCSPFinder instance to find the solution.
|
22
|
+
#
|
23
|
+
# @return [String] The solution to the LCSP problem.
|
24
|
+
# @return [nil] If the LCSPFinder file is not found or the solution is not found.
|
25
|
+
def resolve
|
26
|
+
cache = ::LCSP::LCSPCache.new(@user, @repository)
|
27
|
+
finder_path = "#{cache.path}/lcsp/finder.rb"
|
28
|
+
|
29
|
+
unless ::File.exist?(finder_path)
|
30
|
+
puts('finder.rb not found in repository. Please, check config and try again.')
|
31
|
+
|
32
|
+
exit(1)
|
33
|
+
end
|
34
|
+
|
35
|
+
require_relative(finder_path)
|
36
|
+
|
37
|
+
solution = ::LCSP::LCSPFinder.new(cache.path, @number).solution
|
38
|
+
|
39
|
+
if solution.nil?
|
40
|
+
puts('Solution not found. Please, check your input and try again.')
|
41
|
+
|
42
|
+
exit(2)
|
43
|
+
end
|
44
|
+
|
45
|
+
solution
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/lcsp.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rouge'
|
4
|
+
require 'rouge/cli'
|
5
|
+
|
6
|
+
require_relative './lcsp/resolver'
|
7
|
+
|
8
|
+
module LCSP
|
9
|
+
# This class represents the main functionality of the LCSP (Longest Common Subsequence Problem) tool.
|
10
|
+
class LCSP
|
11
|
+
# Starts the LCSP tool by resolving the longest common subsequence for a given user, repository,
|
12
|
+
# and pull request number.
|
13
|
+
#
|
14
|
+
# @param user [String] The GitHub username of the repository owner.
|
15
|
+
# @param repository [String] The name of the GitHub repository.
|
16
|
+
# @param number [Integer] The pull request number.
|
17
|
+
#
|
18
|
+
# @return [Integer] The exit status of the Rouge CLI tool after processing the resolved LCSP.
|
19
|
+
def start(user, repository, number)
|
20
|
+
output = ::LCSP::LCSPResolver.new(user, repository, number).resolve
|
21
|
+
::Rouge::CLI.parse([output]).run
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lcsp
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Artem Fomchenkov
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-07-20 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.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.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.7.4
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.7.4
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: git
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.18'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.18'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rouge
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 4.1.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 4.1.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 5.18.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 5.18.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 12.3.3
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 12.3.3
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.7.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.7.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.22.0
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.22.0
|
125
|
+
description:
|
126
|
+
email: artem.fomchenkov@outlook.com
|
127
|
+
executables:
|
128
|
+
- lcsp
|
129
|
+
extensions: []
|
130
|
+
extra_rdoc_files:
|
131
|
+
- README.md
|
132
|
+
files:
|
133
|
+
- LICENSE
|
134
|
+
- README.md
|
135
|
+
- bin/lcsp
|
136
|
+
- lib/lcsp.rb
|
137
|
+
- lib/lcsp/cache.rb
|
138
|
+
- lib/lcsp/resolver.rb
|
139
|
+
homepage: https://github.com/fartem/lcsp
|
140
|
+
licenses:
|
141
|
+
- MIT
|
142
|
+
metadata: {}
|
143
|
+
post_install_message:
|
144
|
+
rdoc_options: []
|
145
|
+
require_paths:
|
146
|
+
- lib
|
147
|
+
- lib
|
148
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '3.0'
|
153
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
requirements: []
|
159
|
+
rubygems_version: 3.4.10
|
160
|
+
signing_key:
|
161
|
+
specification_version: 4
|
162
|
+
summary: A tool for showing solutions from LeetCode
|
163
|
+
test_files: []
|