mosespa 0.0.4 → 0.0.5
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/README.md +9 -1
- data/mosespa.gemspec +2 -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: 1b81ac92922b7e0881b174c66e97c3731f6bc002
|
|
4
|
+
data.tar.gz: a3d4423d2f87291b9609820d16a9067a55872f60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa9ad78a2d2f6b0194b88391f7c48551442a0d345dfbca02be0bcf9368ed3e91cbe13d46659519b0b01f58bf1f223a67e9cebf928fb637ba316186f18937d969
|
|
7
|
+
data.tar.gz: f401234fbdeee2809357af61719269dba6251ea4071ddf4bc625f12e8b7912824b2434dc459ec692a3bf8304f8704313333c4936cdf241cfced8aa362994cc21
|
data/README.md
CHANGED
|
@@ -7,7 +7,8 @@ This uses the REST interface of jira.
|
|
|
7
7
|
Basic command includes :
|
|
8
8
|
- ```show TICKET [--verbose]```
|
|
9
9
|
- ```comment TICKET a free text comment```
|
|
10
|
-
- ```
|
|
10
|
+
- ```create PROJECT```
|
|
11
|
+
- ```browse TICKET```
|
|
11
12
|
|
|
12
13
|
Usage
|
|
13
14
|
--------
|
|
@@ -45,8 +46,15 @@ To create tickets:
|
|
|
45
46
|
|
|
46
47
|
If you don't specify the summary option (```mosespa create COOK```), mosespa will open you favorite $EDITOR to help you create a new ticket.
|
|
47
48
|
|
|
49
|
+
### Browsing
|
|
50
|
+
|
|
51
|
+
If mosespa did not help you, you can launch your $BROWSER on a ticket page with:
|
|
52
|
+
```mosespa browse COOK-2878```
|
|
48
53
|
|
|
49
54
|
Installation
|
|
50
55
|
------------
|
|
51
56
|
|
|
52
57
|
Clone this repository, ```gem build mosespa.gemspec``` and ```gem install mosespa*gem```
|
|
58
|
+
|
|
59
|
+
If you want (very) basic bash completion (on sub commands only for now), you can include completion_mosespa file in your .bashrc.
|
|
60
|
+
Contributions are welcomed on that too !
|
data/mosespa.gemspec
CHANGED
|
@@ -3,9 +3,10 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "mosespa"
|
|
6
|
-
s.version = '0.0.
|
|
6
|
+
s.version = '0.0.5'
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
8
8
|
s.authors = ["Grégoire Seux"]
|
|
9
|
+
s.license = "Apache License v2"
|
|
9
10
|
s.summary = %q{Play on command line with JIRA}
|
|
10
11
|
s.homepage = "http://github.com/kamaradclimber/mosespa"
|
|
11
12
|
s.description = %q{}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mosespa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grégoire Seux
|
|
@@ -68,7 +68,8 @@ files:
|
|
|
68
68
|
- lib/mosespa.rb
|
|
69
69
|
- mosespa.gemspec
|
|
70
70
|
homepage: http://github.com/kamaradclimber/mosespa
|
|
71
|
-
licenses:
|
|
71
|
+
licenses:
|
|
72
|
+
- Apache License v2
|
|
72
73
|
metadata: {}
|
|
73
74
|
post_install_message:
|
|
74
75
|
rdoc_options: []
|