climine 0.0.3 → 0.0.4
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +10 -4
- data/bin/climine +6 -0
- data/climine.yml +3 -0
- data/lib/climine/command/config.rb +4 -2
- data/lib/climine/config.rb +1 -1
- data/lib/climine/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f71c5ec923fc8ef50b38a99b1dc54d66c302d563
|
4
|
+
data.tar.gz: 6df0751757a301c4f0bb64c5591b703b509bf5a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b234eab4fa83f16984bd3fd22ec8dc1ae4a378ea497e9189626f691025c5f9f45b9d86b7143e33353cdd3fe4811e20ea1af5f0effb5a19e0deccf0b03dbf6074
|
7
|
+
data.tar.gz: 9ce03d17057fe3a9c4f643f0159c3f1ab42fcc19c39dc5f23ffbb40f238ff77f76cf73eda9051d837bf7553520de2dd7fbd146ef019defd2733ddcbbc15588da
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -26,12 +26,18 @@ create `config.yml`
|
|
26
26
|
$ climine init -k xxxx -u http://xxxx.xxx.xx/ -e `which emacs`
|
27
27
|
```
|
28
28
|
|
29
|
-
```
|
29
|
+
```climine.yml
|
30
30
|
url: http://xxxx.xxx.xx/
|
31
31
|
apikey: xxxx
|
32
32
|
editor: /path/to/emacs
|
33
33
|
```
|
34
34
|
|
35
|
+
Path of the configuration file can also be specified in the environment variable.
|
36
|
+
|
37
|
+
```
|
38
|
+
export CLIMINE_CONF=path/to/climine.yml
|
39
|
+
```
|
40
|
+
|
35
41
|
### Help
|
36
42
|
|
37
43
|
- show all help
|
@@ -80,7 +86,7 @@ get Redmine Issues. see) http://www.redmine.org/projects/redmine/wiki/Rest_Issue
|
|
80
86
|
|
81
87
|
```
|
82
88
|
Usage:
|
83
|
-
climine get [TICKET_NO]
|
89
|
+
climine issue get [TICKET_NO]
|
84
90
|
|
85
91
|
Options:
|
86
92
|
-t, [--template=TEMPLATE_PATH] # rendering by given template
|
@@ -91,14 +97,14 @@ get Redmine Issues. see) http://www.redmine.org/projects/redmine/wiki/Rest_Issue
|
|
91
97
|
You can be rendered using the your own ERB template file.
|
92
98
|
|
93
99
|
```
|
94
|
-
$ climine issue (get|
|
100
|
+
$ climine issue (get|list) -t [template_path]
|
95
101
|
```
|
96
102
|
|
97
103
|
#### create issue
|
98
104
|
|
99
105
|
```
|
100
106
|
Usage:
|
101
|
-
climine new
|
107
|
+
climine issue new
|
102
108
|
|
103
109
|
Options:
|
104
110
|
-p, [--project=PROJECT_ID] # project_id (search by `project` command)
|
data/bin/climine
CHANGED
data/climine.yml
ADDED
@@ -2,7 +2,7 @@ require 'erb'
|
|
2
2
|
|
3
3
|
module Climine::Command
|
4
4
|
class Config < Base
|
5
|
-
CONFIG = "
|
5
|
+
CONFIG = "climine.yml"
|
6
6
|
TEMPLATE = <<-ERB
|
7
7
|
url: <%= options[:url] %>
|
8
8
|
apikey: <%= options[:key] %>
|
@@ -13,11 +13,13 @@ editor: <%= options[:editor] %>
|
|
13
13
|
|
14
14
|
default_command :init
|
15
15
|
|
16
|
-
desc "init ", "initialize
|
16
|
+
desc "init ", "initialize climine.yml"
|
17
17
|
option :url, required: true, type: :string, aliases: '-u', banner: "RedmineURL", desc: "Your Redmine's URL"
|
18
18
|
option :key, required: true, type: :string, aliases: '-k', banner: "API-Access-Key", desc: "Your API Access Key"
|
19
19
|
option :editor, required: false, type: :string, aliases: '-e', banner: "Editor command or path", desc: "Your favorite editor ex) emacs or vim or /usr/bin/emacs etc..."
|
20
20
|
def init
|
21
|
+
return if File.exist?(CONFIG) and !yes?("Overwrite? [#{CONFIG}] (y/n)", :green)
|
22
|
+
|
21
23
|
open(CONFIG, 'w'){|file| file.write(ERB.new(TEMPLATE, nil, "-").result(binding)) }
|
22
24
|
puts "create [ #{File.expand_path(CONFIG)} ]"
|
23
25
|
end
|
data/lib/climine/config.rb
CHANGED
data/lib/climine/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: climine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yagince
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -132,6 +132,7 @@ extra_rdoc_files: []
|
|
132
132
|
files:
|
133
133
|
- bin/climine
|
134
134
|
- climine.gemspec
|
135
|
+
- climine.yml
|
135
136
|
- config.yml
|
136
137
|
- Gemfile
|
137
138
|
- Gemfile.lock
|