pivo 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +58 -0
- data/Rakefile +2 -0
- data/bin/pivo +5 -0
- data/lib/pivo.rb +32 -0
- data/lib/pivo/version.rb +3 -0
- data/pivo.gemspec +25 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8466a1623762db6bc766cf3c4824d32ddd0bff91
|
4
|
+
data.tar.gz: 7df5ca0aabb3bcee5af34e09fb67861ca1becdce
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8a7adea6ed10262c854742ac192133a42d7a1ee0e0119ff0a30ff8525bd07660db24fc774845080ac906922eb2e10d3e48602edba235f9d4a50fadba95122aa4
|
7
|
+
data.tar.gz: c69684097ff952faf27ef5e22ecd6ae84af4ddc4cb580951f30a6ed50f2a07ce1482f8e62a121cf2c3a85b63b0a222751cfe6ce701f5117c68e58d2d11665bf8
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 AKAMATSU Yuki
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# Pivo
|
2
|
+
|
3
|
+
## Usage
|
4
|
+
|
5
|
+
Add [Pivotal Trackert](http://www.pivotaltracker.com/) API token to $HOME/.pivo.yml
|
6
|
+
|
7
|
+
```yaml
|
8
|
+
token: aaaaaaaaaaaaaaaa
|
9
|
+
```
|
10
|
+
|
11
|
+
### Listing projects
|
12
|
+
|
13
|
+
```shell
|
14
|
+
$ pivo projects
|
15
|
+
```
|
16
|
+
|
17
|
+
### Listing stories
|
18
|
+
|
19
|
+
```shell
|
20
|
+
$ pivo stories PROJECT_NAME
|
21
|
+
```
|
22
|
+
|
23
|
+
#### with peco
|
24
|
+
|
25
|
+
```zsh
|
26
|
+
function pivo-open() {
|
27
|
+
local url="$(pivo stories $1 | peco --query "$LBUFFER" | awk '{print $NF}')"
|
28
|
+
open ${url}
|
29
|
+
}
|
30
|
+
```
|
31
|
+
|
32
|
+
## Installation
|
33
|
+
|
34
|
+
Add this line to your application's Gemfile:
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
gem 'pivo'
|
38
|
+
```
|
39
|
+
|
40
|
+
And then execute:
|
41
|
+
|
42
|
+
$ bundle
|
43
|
+
|
44
|
+
Or install it yourself as:
|
45
|
+
|
46
|
+
$ gem install pivo
|
47
|
+
|
48
|
+
## Usage
|
49
|
+
|
50
|
+
TODO: Write usage instructions here
|
51
|
+
|
52
|
+
## Contributing
|
53
|
+
|
54
|
+
1. Fork it ( https://github.com/[my-github-username]/pivo/fork )
|
55
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
56
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
57
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
58
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/pivo
ADDED
data/lib/pivo.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require "pivo/version"
|
2
|
+
|
3
|
+
require 'yaml'
|
4
|
+
require 'tracker_api'
|
5
|
+
require 'thor'
|
6
|
+
|
7
|
+
module Pivo
|
8
|
+
class CLI < Thor
|
9
|
+
desc "projects", "listing project names"
|
10
|
+
def projects
|
11
|
+
say client.projects.map(&:name).join("\n")
|
12
|
+
end
|
13
|
+
|
14
|
+
desc "stories PROJECT_NAME", "listing project stories"
|
15
|
+
def stories(project_name)
|
16
|
+
project = client.projects.select {|project| project.name == project_name}[0]
|
17
|
+
project.stories.each do |story|
|
18
|
+
say "[#{story.current_state}]\t#{story.name}\t#{story.url}"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def client
|
25
|
+
TrackerApi::Client.new(token: token)
|
26
|
+
end
|
27
|
+
|
28
|
+
def token
|
29
|
+
YAML.load(File.read("#{ENV['HOME']}/.pivo.yml"))['token']
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/lib/pivo/version.rb
ADDED
data/pivo.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'pivo/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "pivo"
|
8
|
+
spec.version = Pivo::VERSION
|
9
|
+
spec.authors = ["AKAMATSU Yuki"]
|
10
|
+
spec.email = ["y.akamatsu@ukstudio.jp"]
|
11
|
+
spec.summary = %q{for pivotal tracker}
|
12
|
+
spec.description = %q{for pivotal tracker}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
|
24
|
+
spec.add_dependency "tracker_api"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pivo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- AKAMATSU Yuki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: tracker_api
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: for pivotal tracker
|
56
|
+
email:
|
57
|
+
- y.akamatsu@ukstudio.jp
|
58
|
+
executables:
|
59
|
+
- pivo
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bin/pivo
|
69
|
+
- lib/pivo.rb
|
70
|
+
- lib/pivo/version.rb
|
71
|
+
- pivo.gemspec
|
72
|
+
homepage: ''
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.2.2
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: for pivotal tracker
|
96
|
+
test_files: []
|