linear-cli 0.4.3 → 0.4.5

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: d55afb114ac12e5b2ec711860c3830d2576519b6485af8c9561321df8ccf0201
4
- data.tar.gz: 899b4a2284ee107e2be7573ce92ee79809f9c7893fb10ceac07ba1f84d9e9267
3
+ metadata.gz: cb92c9146c83ed3475e22b56f91f6a9c99fe3728a1c93578e63cccaa901b874d
4
+ data.tar.gz: 6fb9075b1306defe1282f011a788ae88542b3684c466afb40367bc2a25eb3a61
5
5
  SHA512:
6
- metadata.gz: b03010bff016a35ed0de78a5db9a9b67768c30e5446553e7325005f6faf3f0364a6b4038ea58a0a0b908e1fe469ae4228334db286bc5d52776bf13c773e154f4
7
- data.tar.gz: 20b2b981e54f8c4e67e76d8619f169f541eff43d958fb57f329146dd0086362fba813478db27623839127274405f46071d61074697c1823c9632885fcae9bccf
6
+ metadata.gz: 7f3c6a39b2e046aa35a16790715ab34dfd79ac08c7696b25b634d9a2a8e6068b477d50baabd91000f51c713eda3eb8b36311d55a649e9e15d76448bcc1128e7d
7
+ data.tar.gz: 22ac8fa5fa283eaa2f22a7f8c22a3e7dcad62031a3421062511afef00148e8c7307d7a249700e14d966ec2964f279de97475ea1afdad98ce996da1a49b48cff8
data/Readme.adoc CHANGED
@@ -9,7 +9,14 @@ A command line interface to https://linear.app.
9
9
 
10
10
  == Installation
11
11
 
12
- === From Source
12
+ === Gem (Most should use this)
13
+
14
+ [source,sh]
15
+ ----
16
+ $ gem install linear-cli
17
+ ----
18
+
19
+ === From Source (You are obviously a developer)
13
20
 
14
21
  [source,sh]
15
22
  ----
@@ -23,20 +30,21 @@ $ rake install
23
30
 
24
31
  === Configuration
25
32
 
26
- You must set the LINEAR_API_KEY environment variable to your Linear API key. You can find your API key at https://linear.app/settings/api.
33
+ You must set the LINEAR_API_KEY environment variable to your Linear API key.
34
+ You can find your API key in your https://linear.app/settings/api[Linear Settings].
27
35
 
28
36
  ==== Tab Completion
29
37
 
30
- If you are using bash or zsh, you can enable tab completion by adding the following to your .bashrc or .zshrc:
38
+ If you are using bash or zsh, you can enable tab completion by adding the following to your `.bashrc` or `.zshrc`:
31
39
 
32
- Bash:
40
+ bash:
33
41
 
34
42
  [source,sh]
35
43
  ----
36
44
  eval "$(lc completion bash)"
37
45
  ----
38
46
 
39
- Zsh:
47
+ zsh:
40
48
 
41
49
  [source,sh]
42
50
  ----
@@ -45,7 +53,7 @@ eval "$(lc completion zsh)"
45
53
 
46
54
  === Commands
47
55
 
48
- === Help
56
+ ==== Help
49
57
 
50
58
  You can get help/usage for any command or subcommand by using the `--help` flag.
51
59
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubyists
4
4
  module Linear
5
- VERSION = '0.4.3'
5
+ VERSION = '0.4.5'
6
6
  end
7
7
  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.4.3
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel