octopando 0.1.1 → 0.2.0
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 +14 -17
- data/exe/op +5 -0
- data/lib/octopando/cli.rb +1 -0
- data/lib/octopando/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b952126463c2b3b7c494fb54d721c5fc824f896
|
4
|
+
data.tar.gz: 0fc534cf16c550f9257b1692fb869dc06746f826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e608bd723a9ceef03add2fb99ad9ddc9a218dfb4df78abe3ab557fc206293204e0cff3bebf0bdb97180b280f7e13d170732d0bc96f4eca5963b3a989a798a7a
|
7
|
+
data.tar.gz: 700f38313bdae4bc251b5ac9a596c8889bb54b9eac380dd29e0c4337cf89f1d923063288983ede2eaae6212ac31d77f50fe7bea5a50040589d0b9463ac89fe7e
|
data/README.md
CHANGED
@@ -1,28 +1,26 @@
|
|
1
1
|
# Octopando
|
2
2
|
|
3
|
-
|
3
|
+
Designed to make your life easier by letting you live in the command line more.
|
4
4
|
|
5
|
-
|
5
|
+
- Automatically creates a branch for the issue you are working on
|
6
|
+
- When committing it will pull in the ticket summary into the commit message
|
6
7
|
|
7
|
-
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'octopando'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
8
|
+
It will pull you jira credentials from the osx keychain
|
18
9
|
|
19
|
-
|
10
|
+
## Installation
|
20
11
|
|
21
12
|
$ gem install octopando
|
22
13
|
|
14
|
+
This will install an `octopando` executable, and a symlink to it named `op`
|
15
|
+
|
23
16
|
## Usage
|
24
17
|
|
25
|
-
|
18
|
+
$ op start
|
19
|
+
1 CNVS-20465 - Assignments submitted via Google Drive have missing file extensions
|
20
|
+
2 PLAT-1082 - Create an HTML element to allow a thumbnail overlay for LTI Launches
|
21
|
+
Select a ticket 1
|
22
|
+
|
23
|
+
This will check out the branch `issue/CNVS-20465`. If it doesn't exist it will create it from the current branch you are on
|
26
24
|
|
27
25
|
## Development
|
28
26
|
|
@@ -32,10 +30,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
30
|
|
33
31
|
## Contributing
|
34
32
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
33
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/defektive/octopando.
|
36
34
|
|
37
35
|
|
38
36
|
## License
|
39
37
|
|
40
38
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
-
|
data/exe/op
ADDED
data/lib/octopando/cli.rb
CHANGED
data/lib/octopando/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopando
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- defektive
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|
@@ -113,6 +113,7 @@ email:
|
|
113
113
|
- sirbradleyd@gmail.com
|
114
114
|
executables:
|
115
115
|
- octopando
|
116
|
+
- op
|
116
117
|
extensions: []
|
117
118
|
extra_rdoc_files: []
|
118
119
|
files:
|
@@ -125,6 +126,7 @@ files:
|
|
125
126
|
- bin/console
|
126
127
|
- bin/setup
|
127
128
|
- exe/octopando
|
129
|
+
- exe/op
|
128
130
|
- lib/octopando.rb
|
129
131
|
- lib/octopando/cli.rb
|
130
132
|
- lib/octopando/jira_client.rb
|