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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f9a557f77b31d8280c7eb8f437dfdf057f3a117e
4
- data.tar.gz: 11417495310b5a280213cee77d22e702b3dc1c19
3
+ metadata.gz: 2b952126463c2b3b7c494fb54d721c5fc824f896
4
+ data.tar.gz: 0fc534cf16c550f9257b1692fb869dc06746f826
5
5
  SHA512:
6
- metadata.gz: 913d9e7645afcb9d1c1cd3a1a6113ed87596f9d55ed9c718a89064e0653801d63e67673696890954e9f02d369a0761e3ace4ea7de5cf1e02501bf05510b95648
7
- data.tar.gz: 22fcf8b8df705a717a9db36802799757a7cd12a8fb96cb8777f49ed57f451ae85811c949c099c9195c142c43dd35fa1dd281bfb6c5da16a9d707664e8598bc60
6
+ metadata.gz: 0e608bd723a9ceef03add2fb99ad9ddc9a218dfb4df78abe3ab557fc206293204e0cff3bebf0bdb97180b280f7e13d170732d0bc96f4eca5963b3a989a798a7a
7
+ data.tar.gz: 700f38313bdae4bc251b5ac9a596c8889bb54b9eac380dd29e0c4337cf89f1d923063288983ede2eaae6212ac31d77f50fe7bea5a50040589d0b9463ac89fe7e
data/README.md CHANGED
@@ -1,28 +1,26 @@
1
1
  # Octopando
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/octopando`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Designed to make your life easier by letting you live in the command line more.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
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
- ## Installation
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
- Or install it yourself as:
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
- TODO: Write usage instructions here
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/[USERNAME]/octopando.
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
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "octopando"
4
+
5
+ Octopando::CLI.start(ARGV)
data/lib/octopando/cli.rb CHANGED
@@ -2,6 +2,7 @@ module Octopando
2
2
  class CLI < Thor
3
3
  package_name "Octopando"
4
4
 
5
+ map ["switch", "s"] => "start"
5
6
  desc "start", "Start some work"
6
7
  def start
7
8
  Octopando.jira.my_issues.each_with_index do |issue, index|
@@ -1,3 +1,3 @@
1
1
  module Octopando
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
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.1.1
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-09 00:00:00.000000000 Z
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