linear-cli 0.6.1 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4026e9cf06b89bfcb574999671055fe7c07cb81b3b00c373834c73a5b6804388
4
- data.tar.gz: e476a919a256f0689f77e286e0681c9f53b31616fd87ed3851010b8b12fdc835
3
+ metadata.gz: c16946d45cad9729159c78931d6200a4573df9acaff1994b86e2f542adc11427
4
+ data.tar.gz: d2c8befedabc5771412f707e43edd375bd24ae48f6d6bb3acc658010ec168c91
5
5
  SHA512:
6
- metadata.gz: 63516aa3096f09fba035ec976fecb068fa0e716490813d450cd5f1389e7dd96bc115cbe799581142a175b81520ba215d0b3653a93dca1c0a5c30e6110e9f65fa
7
- data.tar.gz: 01c3f94c3a364d49b2f78512285d144dffb40cbefaa4e4db36c2827ba62bbcc0e8cf6b6f885d611a2689abb5b04d5170d2b44246c3a4f77a3757df038a38fc95
6
+ metadata.gz: '081e4dd2dac54ec954c83b88f47a4734351a782eff189fed6ed482df2cbb626cce9a6da7365a06239b58418259857c04fd2cc929f678ae37e1425952955b1dd5'
7
+ data.tar.gz: 0a5d7b545b2d69f5b8cddaed3aee0e57d1adef50a58f0234ff03b09ab7f39a0edb72765cde3ce7be66968c38a2df98828e1746731f86a7284207cc29af26574d
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.7.0] - 2024-02-04
6
+ ### Added
7
+ - Added better help when using the lc bin and aliases (@bougyman)
8
+
5
9
  ## [0.6.1] - 2024-02-04
6
10
  ### Added
7
11
  - Added lcreate alias (@bougyman)
@@ -25,8 +29,9 @@
25
29
  ### Added
26
30
  - Added new changelog management system (changelog-rb) (@bougyman)
27
31
 
28
- [Unreleased]: https://github.com/rubyists/linear-cli/compare/0.6.1...HEAD
29
- [0.6.1]: https://github.com/rubyists/linear-cli/compare/v0.6.0...0.6.1
32
+ [Unreleased]: https://github.com/rubyists/linear-cli/compare/0.7.0...HEAD
33
+ [0.7.0]: https://github.com/rubyists/linear-cli/compare/v0.6.1...0.7.0
34
+ [0.6.1]: https://github.com/rubyists/linear-cli/compare/v0.6.0...v0.6.1
30
35
  [0.6.0]: https://github.com/rubyists/linear-cli/compare/v0.5.5...v0.6.0
31
36
  [0.5.5]: https://github.com/rubyists/linear-cli/compare/v0.5.4...v0.5.5
32
37
  [0.5.4]: https://github.com/rubyists/linear-cli/compare/v0.5.3...v0.5.4
@@ -0,0 +1,4 @@
1
+ type: Added
2
+ title: >
3
+ Added better help when using the lc bin and aliases
4
+ author: bougyman
@@ -0,0 +1 @@
1
+ date: 2024-02-04
data/exe/lc CHANGED
@@ -1,6 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'linear'
5
- Rubyists::Linear::L :cli
6
- Dry::CLI.new(Rubyists::Linear::CLI).call
4
+ exec File.join(__dir__, 'lc.sh'), *ARGV
data/exe/lc.sh ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env bash
2
+ if [ "$#" -eq 0 ]; then
3
+ printf "No subcommand provided, defaulting to 'lc issue list'\nlc --help to see subcommands\n" >&2
4
+ exec linear-cli issue list
5
+ fi
6
+ if [[ "$*" =~ --help|-h ]]
7
+ then
8
+ printf "Each subcommand has its own help, use 'lc <subcommand> --help' to see it\n" >&2
9
+ linear-cli "$@" 2>&1|sed 's/linear-cli/lc/g'
10
+ exit 0
11
+ fi
12
+ if ! linear-cli "$@"
13
+ then
14
+ printf "lc: linear-cli failed\n" >&2
15
+ lc "$@" --help 2>&1
16
+ exit 1
17
+ fi
data/exe/lclose.sh CHANGED
@@ -4,6 +4,6 @@ then
4
4
  printf "This wrapper adds the --close option to the 'issue update' command.\n" >&2
5
5
  printf "It is used to close one or many issues. The issues are specified by their ID/slugs.\n" >&2
6
6
  printf "For closing multiple issues, you really want to pass --reason so you do not get prompted for each issue.\n\n" >&2
7
- exec lc issue update --help
7
+ exec linear-cli issue update --help
8
8
  fi
9
- exec lc issue update --close "$@"
9
+ exec linear-cli issue update --close "$@"
data/exe/lcls.sh CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env bash
2
- exec lc i ls "$@"
2
+ exec linear-cli issue list "$@"
data/exe/lcreate.sh CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env bash
2
- exec lc issue create "$@"
2
+ exec linear-cli issue create "$@"
data/exe/linear-cli ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'linear'
5
+ Rubyists::Linear::L :cli
6
+ Dry::CLI.new(Rubyists::Linear::CLI).call
@@ -24,6 +24,7 @@ module Rubyists
24
24
  exit 1
25
25
  rescue NotFoundError => e
26
26
  logger.error e.message
27
+ exit 66
27
28
  rescue StandardError => e
28
29
  logger.error e.message
29
30
  logger.error e.backtrace.join("\n") if Rubyists::Linear.verbosity.positive?
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubyists
4
4
  module Linear
5
- VERSION = '0.6.1'
5
+ VERSION = '0.7.0'
6
6
  end
7
7
  end
data/lib/linear/cli.rb CHANGED
@@ -38,7 +38,6 @@ module Rubyists
38
38
  end
39
39
 
40
40
  def self.load_and_register!(command)
41
- logger.debug "Registering #{command}"
42
41
  name = command.name.split('::').last.downcase
43
42
  command_aliases = command::ALIASES[name.to_sym] || []
44
43
  register name, aliases: Array(command_aliases) do |cmd|
@@ -19,12 +19,13 @@ module Rubyists
19
19
  include Rubyists::Linear::CLI::Issue # for #gimme_da_issue! and other Issue methods
20
20
  desc 'Update an issue'
21
21
  argument :issue_ids, type: :array, required: true, desc: 'Issue IDs (i.e. ISS-1)'
22
- option :comment, type: :string, aliases: ['--message'], desc: 'Comment to add to the issue'
22
+ option :comment, type: :string, aliases: ['-m'], desc: 'Comment to add to the issue'
23
23
  option :pr, type: :boolean, aliases: ['--pull-request'], default: false, desc: 'Create a pull request'
24
24
  option :close, type: :boolean, default: false, desc: 'Close the issue'
25
- option :reason, type: :string, aliases: ['--close-reason'], desc: 'Reason for closing the issue'
25
+ option :reason, type: :string, aliases: ['--butwhy'], desc: 'Reason for closing the issue'
26
26
 
27
27
  def call(issue_ids:, **options)
28
+ prompt.error('You should provide at least one issue ID') && raise(SmellsBad) if issue_ids.empty?
28
29
  logger.debug('Updating issues', issue_ids:, options:)
29
30
  Rubyists::Linear::Issue.find_all(issue_ids).each do |issue|
30
31
  update_issue(issue, **options)
@@ -10,6 +10,9 @@ module Rubyists
10
10
  # should be included in any command that deals with issues
11
11
  module Issue
12
12
  include CLI::SubCommands
13
+
14
+ DESCRIPTION = 'Manage issues'
15
+
13
16
  # Aliases for Issue commands
14
17
  ALIASES = {
15
18
  create: %w[c new add], # aliases for the create command
@@ -19,6 +22,7 @@ module Rubyists
19
22
  issue: %w[i issues] # aliases for the main issue command itself
20
23
  }.freeze
21
24
 
25
+
22
26
  def issue_comment(issue, comment)
23
27
  issue.add_comment(comment)
24
28
  prompt.ok("Comment added to #{issue.identifier}")
@@ -12,6 +12,8 @@ module Rubyists
12
12
  list: %w[ls l], # aliases for the list command
13
13
  team: %w[t teams] # aliases for the main team command itself
14
14
  }.freeze
15
+
16
+ DESCRIPTION = 'Manage teams'
15
17
  end
16
18
  end
17
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linear-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel
@@ -183,12 +183,14 @@ email:
183
183
  - tj@rubyists.com
184
184
  executables:
185
185
  - lc
186
+ - lc.sh
186
187
  - lclose
187
188
  - lclose.sh
188
189
  - lcls
189
190
  - lcls.sh
190
191
  - lcreate
191
192
  - lcreate.sh
193
+ - linear-cli
192
194
  extensions: []
193
195
  extra_rdoc_files: []
194
196
  files:
@@ -207,14 +209,18 @@ files:
207
209
  - changelog/0.6.0/tag.yml
208
210
  - changelog/0.6.1/added_lcreate_alias.yml
209
211
  - changelog/0.6.1/tag.yml
212
+ - changelog/0.7.0/added_better_help_when_using_the_lc_bin_and_aliases.yml
213
+ - changelog/0.7.0/tag.yml
210
214
  - changelog/unreleased/.gitkeep
211
215
  - exe/lc
216
+ - exe/lc.sh
212
217
  - exe/lclose
213
218
  - exe/lclose.sh
214
219
  - exe/lcls
215
220
  - exe/lcls.sh
216
221
  - exe/lcreate
217
222
  - exe/lcreate.sh
223
+ - exe/linear-cli
218
224
  - lib/linear.rb
219
225
  - lib/linear/api.rb
220
226
  - lib/linear/cli.rb