michael 0.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/.gitignore +14 -0
- data/.rspec +3 -0
- data/.rubocop.yml +2 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +179 -0
- data/README.md +26 -0
- data/Rakefile +6 -0
- data/exe/michael +23 -0
- data/lib/michael/cli.rb +42 -0
- data/lib/michael/command.rb +131 -0
- data/lib/michael/commands/.gitkeep +1 -0
- data/lib/michael/commands/auth.rb +40 -0
- data/lib/michael/commands/repos/edit.rb +25 -0
- data/lib/michael/commands/repos/pull_requests.rb +132 -0
- data/lib/michael/commands/repos.rb +49 -0
- data/lib/michael/models/configuration.rb +69 -0
- data/lib/michael/models/github/octokit_initializer.rb +21 -0
- data/lib/michael/models/github/pr_wrapper.rb +84 -0
- data/lib/michael/models/github/pull_request.rb +51 -0
- data/lib/michael/models/github/review.rb +41 -0
- data/lib/michael/models/github/reviewer.rb +17 -0
- data/lib/michael/models/github/status.rb +25 -0
- data/lib/michael/models/github/team.rb +17 -0
- data/lib/michael/models/github/token_validator.rb +30 -0
- data/lib/michael/models/github/user.rb +21 -0
- data/lib/michael/models/guard.rb +20 -0
- data/lib/michael/models/pull_request_formatter.rb +116 -0
- data/lib/michael/models/repository_formatter.rb +26 -0
- data/lib/michael/version.rb +5 -0
- data/lib/michael.rb +8 -0
- data/michael.gemspec +63 -0
- metadata +499 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f5378c09fa65b4365f4464066ffa76ca18cd97874fb99b00d592e5f334f73a57
|
4
|
+
data.tar.gz: '05881687231e7016ec28d5cb8c5ecdec335e800496ca4f52c5cb6cd8f5947daf'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 110981d0bae26a992013c26288e15d65d6f2f8725aec6c77a247c99eaeefd6e332c3de6427417f7344e32c6894f9153241268569a762790caf2fa5070b823f10
|
7
|
+
data.tar.gz: 519cf1a29a3feab6f8b38425b3d652e8777898ab64519ed39460f43ad874d86f03abc4c9ff33cae4c32ed22b61df9bc6b6ce94b60af5660bedf9f53de614f79d
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at kudryk.v@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
michael (0.1.0)
|
5
|
+
octokit (~> 4.0)
|
6
|
+
parallel (~> 1.18.0)
|
7
|
+
pastel (~> 0.7.2)
|
8
|
+
ruby-duration (~> 3.2.3)
|
9
|
+
thor (~> 0.20.0)
|
10
|
+
tty-box (~> 0.4.1)
|
11
|
+
tty-color (~> 0.5)
|
12
|
+
tty-command (~> 0.9.0)
|
13
|
+
tty-config (~> 0.3.2)
|
14
|
+
tty-cursor (~> 0.7)
|
15
|
+
tty-editor (~> 0.5)
|
16
|
+
tty-file (~> 0.8.0)
|
17
|
+
tty-font (~> 0.4.0)
|
18
|
+
tty-logger (~> 0.2.0)
|
19
|
+
tty-markdown (~> 0.6.0)
|
20
|
+
tty-pager (~> 0.12)
|
21
|
+
tty-pie (~> 0.3.0)
|
22
|
+
tty-platform (~> 0.2)
|
23
|
+
tty-progressbar (~> 0.17)
|
24
|
+
tty-prompt (~> 0.19)
|
25
|
+
tty-screen (~> 0.7)
|
26
|
+
tty-spinner (~> 0.9)
|
27
|
+
tty-table (~> 0.11.0)
|
28
|
+
tty-tree (~> 0.3)
|
29
|
+
tty-which (~> 0.4)
|
30
|
+
|
31
|
+
GEM
|
32
|
+
remote: https://rubygems.org/
|
33
|
+
specs:
|
34
|
+
activesupport (6.0.0)
|
35
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
36
|
+
i18n (>= 0.7, < 2)
|
37
|
+
minitest (~> 5.1)
|
38
|
+
tzinfo (~> 1.1)
|
39
|
+
zeitwerk (~> 2.1, >= 2.1.8)
|
40
|
+
addressable (2.7.0)
|
41
|
+
public_suffix (>= 2.0.2, < 5.0)
|
42
|
+
coderay (1.1.2)
|
43
|
+
concurrent-ruby (1.1.5)
|
44
|
+
diff-lcs (1.3)
|
45
|
+
docile (1.3.2)
|
46
|
+
equatable (0.6.1)
|
47
|
+
faraday (0.17.0)
|
48
|
+
multipart-post (>= 1.2, < 3)
|
49
|
+
i18n (1.7.0)
|
50
|
+
concurrent-ruby (~> 1.0)
|
51
|
+
iso8601 (0.12.1)
|
52
|
+
json (2.2.0)
|
53
|
+
kramdown (1.16.2)
|
54
|
+
method_source (0.9.2)
|
55
|
+
minitest (5.12.2)
|
56
|
+
multipart-post (2.1.1)
|
57
|
+
necromancer (0.5.0)
|
58
|
+
octokit (4.14.0)
|
59
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
60
|
+
parallel (1.18.0)
|
61
|
+
pastel (0.7.3)
|
62
|
+
equatable (~> 0.6)
|
63
|
+
tty-color (~> 0.5)
|
64
|
+
pry (0.12.2)
|
65
|
+
coderay (~> 1.1.0)
|
66
|
+
method_source (~> 0.9.0)
|
67
|
+
public_suffix (4.0.1)
|
68
|
+
rake (10.5.0)
|
69
|
+
rouge (3.12.0)
|
70
|
+
rspec (3.9.0)
|
71
|
+
rspec-core (~> 3.9.0)
|
72
|
+
rspec-expectations (~> 3.9.0)
|
73
|
+
rspec-mocks (~> 3.9.0)
|
74
|
+
rspec-core (3.9.0)
|
75
|
+
rspec-support (~> 3.9.0)
|
76
|
+
rspec-expectations (3.9.0)
|
77
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
78
|
+
rspec-support (~> 3.9.0)
|
79
|
+
rspec-mocks (3.9.0)
|
80
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
81
|
+
rspec-support (~> 3.9.0)
|
82
|
+
rspec-support (3.9.0)
|
83
|
+
ruby-duration (3.2.3)
|
84
|
+
activesupport (>= 3.0.0)
|
85
|
+
i18n
|
86
|
+
iso8601
|
87
|
+
sawyer (0.8.2)
|
88
|
+
addressable (>= 2.3.5)
|
89
|
+
faraday (> 0.8, < 2.0)
|
90
|
+
simplecov (0.17.1)
|
91
|
+
docile (~> 1.1)
|
92
|
+
json (>= 1.8, < 3)
|
93
|
+
simplecov-html (~> 0.10.0)
|
94
|
+
simplecov-html (0.10.2)
|
95
|
+
strings (0.1.6)
|
96
|
+
strings-ansi (~> 0.1)
|
97
|
+
unicode-display_width (~> 1.5)
|
98
|
+
unicode_utils (~> 1.4)
|
99
|
+
strings-ansi (0.1.0)
|
100
|
+
thor (0.20.3)
|
101
|
+
thread_safe (0.3.6)
|
102
|
+
tty-box (0.4.1)
|
103
|
+
pastel (~> 0.7.2)
|
104
|
+
strings (~> 0.1.6)
|
105
|
+
tty-cursor (~> 0.7)
|
106
|
+
tty-color (0.5.0)
|
107
|
+
tty-command (0.9.0)
|
108
|
+
pastel (~> 0.7.0)
|
109
|
+
tty-config (0.3.2)
|
110
|
+
tty-cursor (0.7.0)
|
111
|
+
tty-editor (0.5.1)
|
112
|
+
tty-prompt (~> 0.19)
|
113
|
+
tty-which (~> 0.4)
|
114
|
+
tty-file (0.8.0)
|
115
|
+
diff-lcs (~> 1.3)
|
116
|
+
pastel (~> 0.7.2)
|
117
|
+
tty-prompt (~> 0.18)
|
118
|
+
tty-font (0.4.0)
|
119
|
+
tty-logger (0.2.0)
|
120
|
+
pastel (~> 0.7.0)
|
121
|
+
tty-markdown (0.6.0)
|
122
|
+
kramdown (~> 1.16.2)
|
123
|
+
pastel (~> 0.7.2)
|
124
|
+
rouge (~> 3.3)
|
125
|
+
strings (~> 0.1.4)
|
126
|
+
tty-color (~> 0.4)
|
127
|
+
tty-screen (~> 0.6)
|
128
|
+
tty-pager (0.12.1)
|
129
|
+
strings (~> 0.1.4)
|
130
|
+
tty-screen (~> 0.6)
|
131
|
+
tty-which (~> 0.4)
|
132
|
+
tty-pie (0.3.0)
|
133
|
+
pastel (~> 0.7.3)
|
134
|
+
tty-cursor (~> 0.7)
|
135
|
+
tty-platform (0.2.1)
|
136
|
+
tty-progressbar (0.17.0)
|
137
|
+
strings-ansi (~> 0.1.0)
|
138
|
+
tty-cursor (~> 0.7)
|
139
|
+
tty-screen (~> 0.7)
|
140
|
+
unicode-display_width (~> 1.6)
|
141
|
+
tty-prompt (0.19.0)
|
142
|
+
necromancer (~> 0.5.0)
|
143
|
+
pastel (~> 0.7.0)
|
144
|
+
tty-reader (~> 0.6.0)
|
145
|
+
tty-reader (0.6.0)
|
146
|
+
tty-cursor (~> 0.7)
|
147
|
+
tty-screen (~> 0.7)
|
148
|
+
wisper (~> 2.0.0)
|
149
|
+
tty-screen (0.7.0)
|
150
|
+
tty-spinner (0.9.1)
|
151
|
+
tty-cursor (~> 0.7)
|
152
|
+
tty-table (0.11.0)
|
153
|
+
equatable (~> 0.6)
|
154
|
+
necromancer (~> 0.5)
|
155
|
+
pastel (~> 0.7.2)
|
156
|
+
strings (~> 0.1.5)
|
157
|
+
tty-screen (~> 0.7)
|
158
|
+
tty-tree (0.3.0)
|
159
|
+
tty-which (0.4.1)
|
160
|
+
tzinfo (1.2.5)
|
161
|
+
thread_safe (~> 0.1)
|
162
|
+
unicode-display_width (1.6.0)
|
163
|
+
unicode_utils (1.4.0)
|
164
|
+
wisper (2.0.1)
|
165
|
+
zeitwerk (2.2.0)
|
166
|
+
|
167
|
+
PLATFORMS
|
168
|
+
ruby
|
169
|
+
|
170
|
+
DEPENDENCIES
|
171
|
+
bundler (~> 1.17)
|
172
|
+
michael!
|
173
|
+
pry
|
174
|
+
rake (~> 10.0)
|
175
|
+
rspec (~> 3.0)
|
176
|
+
simplecov (~> 0.17.0)
|
177
|
+
|
178
|
+
BUNDLED WITH
|
179
|
+
1.17.2
|
data/README.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# Michael
|
2
|
+
|
3
|
+
## Usage
|
4
|
+
|
5
|
+
```
|
6
|
+
Commands:
|
7
|
+
michael auth # Authorize michael with github API token
|
8
|
+
michael help [COMMAND] # Describe available commands or one specific command
|
9
|
+
michael repos [SUBCOMMAND] # Follow repositories and list opened PRs
|
10
|
+
michael version # michael version
|
11
|
+
|
12
|
+
michael repos edit # Edit list of repos to follow
|
13
|
+
michael repos help [COMMAND] # Describe subcommands or one specific subcommand
|
14
|
+
michael repos prs # List open PRs
|
15
|
+
|
16
|
+
michael repos prs
|
17
|
+
Options:
|
18
|
+
-h, [--help], [--no-help] # Display usage information
|
19
|
+
-e, [--show-empty], [--no-show-empty] # List watched repos that have no open PRs
|
20
|
+
-s, [--skip-self], [--no-skip-self] # Skip PRs created by the current user
|
21
|
+
-p, [--hide-approved], [--no-hide-approved] # Hide PRs that are approved and have no requests for changes
|
22
|
+
-n, [--needs-review], [--no-needs-review] # Show only ones which do not have any reviews yet
|
23
|
+
-t, [--actionable], [--no-actionable] # List only actionable PRs. These are PRs which you did not
|
24
|
+
review yet, or ones which were updated after your review
|
25
|
+
|
26
|
+
```
|
data/Rakefile
ADDED
data/exe/michael
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
lib_path = File.expand_path('../lib', __dir__)
|
5
|
+
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
|
6
|
+
|
7
|
+
require 'michael/cli'
|
8
|
+
require 'tty-prompt'
|
9
|
+
|
10
|
+
Signal.trap('INT') do
|
11
|
+
warn('interrupted')
|
12
|
+
exit(1)
|
13
|
+
end
|
14
|
+
|
15
|
+
begin
|
16
|
+
Michael::CLI.start
|
17
|
+
rescue TTY::Reader::InputInterrupt
|
18
|
+
warn('interrupted')
|
19
|
+
exit(1)
|
20
|
+
rescue Michael::CLI::Error => e
|
21
|
+
puts "ERROR: #{e.message}"
|
22
|
+
exit 1
|
23
|
+
end
|
data/lib/michael/cli.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
|
5
|
+
module Michael
|
6
|
+
# Handle the application command line parsing
|
7
|
+
# and the dispatch to various command objects
|
8
|
+
#
|
9
|
+
# @api public
|
10
|
+
class CLI < Thor
|
11
|
+
# Error raised by this runner
|
12
|
+
Error = Class.new(StandardError)
|
13
|
+
|
14
|
+
desc 'version', 'michael version'
|
15
|
+
|
16
|
+
def version
|
17
|
+
require_relative 'version'
|
18
|
+
puts "v#{Michael::VERSION}"
|
19
|
+
end
|
20
|
+
|
21
|
+
map %w[--version -v] => :version
|
22
|
+
|
23
|
+
require_relative 'commands/repos'
|
24
|
+
register Michael::Commands::Repos,
|
25
|
+
'repos',
|
26
|
+
'repos [SUBCOMMAND]',
|
27
|
+
'Follow repositories and list opened PRs'
|
28
|
+
|
29
|
+
desc 'auth', 'Authorize michael with github API token'
|
30
|
+
method_option :help, aliases: '-h', type: :boolean,
|
31
|
+
desc: 'Display usage information'
|
32
|
+
|
33
|
+
def auth(*)
|
34
|
+
if options[:help]
|
35
|
+
invoke :help, ['auth']
|
36
|
+
else
|
37
|
+
require_relative 'commands/auth'
|
38
|
+
Michael::Commands::Auth.new(options).execute
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'forwardable'
|
4
|
+
|
5
|
+
module Michael
|
6
|
+
class Command
|
7
|
+
extend Forwardable
|
8
|
+
|
9
|
+
def_delegators :command, :run
|
10
|
+
|
11
|
+
# Execute this command
|
12
|
+
#
|
13
|
+
# @api public
|
14
|
+
def execute(*)
|
15
|
+
raise(
|
16
|
+
NotImplementedError,
|
17
|
+
"#{self.class}##{__method__} must be implemented"
|
18
|
+
)
|
19
|
+
end
|
20
|
+
|
21
|
+
# The external commands runner
|
22
|
+
#
|
23
|
+
# @see http://www.rubydoc.info/gems/tty-command
|
24
|
+
#
|
25
|
+
# @api public
|
26
|
+
def command(**options)
|
27
|
+
require 'tty-command'
|
28
|
+
TTY::Command.new(options)
|
29
|
+
end
|
30
|
+
|
31
|
+
# The cursor movement
|
32
|
+
#
|
33
|
+
# @see http://www.rubydoc.info/gems/tty-cursor
|
34
|
+
#
|
35
|
+
# @api public
|
36
|
+
def cursor
|
37
|
+
require 'tty-cursor'
|
38
|
+
TTY::Cursor
|
39
|
+
end
|
40
|
+
|
41
|
+
# Open a file or text in the user's preferred editor
|
42
|
+
#
|
43
|
+
# @see http://www.rubydoc.info/gems/tty-editor
|
44
|
+
#
|
45
|
+
# @api public
|
46
|
+
def editor
|
47
|
+
require 'tty-editor'
|
48
|
+
TTY::Editor
|
49
|
+
end
|
50
|
+
|
51
|
+
# File manipulation utility methods
|
52
|
+
#
|
53
|
+
# @see http://www.rubydoc.info/gems/tty-file
|
54
|
+
#
|
55
|
+
# @api public
|
56
|
+
def generator
|
57
|
+
require 'tty-file'
|
58
|
+
TTY::File
|
59
|
+
end
|
60
|
+
|
61
|
+
def spinner(*args)
|
62
|
+
require 'tty-spinner'
|
63
|
+
TTY::Spinner.new(*args)
|
64
|
+
end
|
65
|
+
|
66
|
+
# Terminal output paging
|
67
|
+
#
|
68
|
+
# @see http://www.rubydoc.info/gems/tty-pager
|
69
|
+
#
|
70
|
+
# @api public
|
71
|
+
def pager(**options)
|
72
|
+
require 'tty-pager'
|
73
|
+
TTY::Pager.new(options)
|
74
|
+
end
|
75
|
+
|
76
|
+
# Terminal platform and OS properties
|
77
|
+
#
|
78
|
+
# @see http://www.rubydoc.info/gems/tty-pager
|
79
|
+
#
|
80
|
+
# @api public
|
81
|
+
def platform
|
82
|
+
require 'tty-platform'
|
83
|
+
TTY::Platform.new
|
84
|
+
end
|
85
|
+
|
86
|
+
# The interactive prompt
|
87
|
+
#
|
88
|
+
# @see http://www.rubydoc.info/gems/tty-prompt
|
89
|
+
#
|
90
|
+
# @api public
|
91
|
+
def prompt(**options)
|
92
|
+
require 'tty-prompt'
|
93
|
+
TTY::Prompt.new(options)
|
94
|
+
end
|
95
|
+
|
96
|
+
def pastel
|
97
|
+
require 'pastel'
|
98
|
+
Pastel.new
|
99
|
+
end
|
100
|
+
|
101
|
+
# Get terminal screen properties
|
102
|
+
#
|
103
|
+
# @see http://www.rubydoc.info/gems/tty-screen
|
104
|
+
#
|
105
|
+
# @api public
|
106
|
+
def screen
|
107
|
+
require 'tty-screen'
|
108
|
+
TTY::Screen
|
109
|
+
end
|
110
|
+
|
111
|
+
# The unix which utility
|
112
|
+
#
|
113
|
+
# @see http://www.rubydoc.info/gems/tty-which
|
114
|
+
#
|
115
|
+
# @api public
|
116
|
+
def which(*args)
|
117
|
+
require 'tty-which'
|
118
|
+
TTY::Which.which(*args)
|
119
|
+
end
|
120
|
+
|
121
|
+
# Check if executable exists
|
122
|
+
#
|
123
|
+
# @see http://www.rubydoc.info/gems/tty-which
|
124
|
+
#
|
125
|
+
# @api public
|
126
|
+
def exec_exist?(*args)
|
127
|
+
require 'tty-which'
|
128
|
+
TTY::Which.exist?(*args)
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
#
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'tty-prompt'
|
4
|
+
|
5
|
+
require_relative '../command'
|
6
|
+
require_relative '../models/github/token_validator'
|
7
|
+
|
8
|
+
module Michael
|
9
|
+
module Commands
|
10
|
+
class Auth < Michael::Command
|
11
|
+
attr_reader :prompt
|
12
|
+
|
13
|
+
def initialize(options)
|
14
|
+
@prompt = TTY::Prompt.new
|
15
|
+
@options = options
|
16
|
+
end
|
17
|
+
|
18
|
+
def execute(out: $stdout)
|
19
|
+
token = read_token
|
20
|
+
unless Michael::Models::Github::TokenValidator.token_valid?(token)
|
21
|
+
return out.puts 'Specified token is invalid'
|
22
|
+
end
|
23
|
+
|
24
|
+
unless Michael::Models::Github::TokenValidator.save_token(token)
|
25
|
+
return out.puts 'Failed to save the token'
|
26
|
+
end
|
27
|
+
|
28
|
+
out.puts 'Token saved'
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def read_token
|
34
|
+
prompt.mask('Please specify github token:', echo: false) do |q|
|
35
|
+
q.modify :strip
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../../command'
|
4
|
+
require_relative '../../models/guard'
|
5
|
+
|
6
|
+
module Michael
|
7
|
+
module Commands
|
8
|
+
class Repos
|
9
|
+
class Edit < Michael::Models::Guard
|
10
|
+
def initialize(options)
|
11
|
+
super()
|
12
|
+
|
13
|
+
@options = options
|
14
|
+
end
|
15
|
+
|
16
|
+
def execute(input: $stdin, output: $stdout)
|
17
|
+
list = repos_config.fetch(:repos)
|
18
|
+
repos_config.append('org/repo', to: :repos) if list.nil? || list.empty?
|
19
|
+
|
20
|
+
editor.open(repos_config.config_file_path)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|