jira-cli 0.1.1 → 0.1.2

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: 05ecfb6b91a13591c35968f449ba01334ae531a1
4
- data.tar.gz: 2592664fc4ef27e33e36f9cbbba031108fd49395
3
+ metadata.gz: 32999fa422b9fe846c5d7810e75b2c7dcb470466
4
+ data.tar.gz: d7a8d78e2bdff54b0ff277c09040b996af1bb7ca
5
5
  SHA512:
6
- metadata.gz: ef02db87d86416029554e350f732044b4a21322f8786b6110e3fdefa5ef4583123e9db1935ad0e3adf0aea5c2002bf2900e33aba8a7026c0b0209848347163bf
7
- data.tar.gz: b99f722bcdb47d5a431cf4e7872872fd4f1546fafda8bc0872dda5353690763287beac4f4accfdf000c4c9f022ec849e346bbf75b97792527b7a522fe3d8452d
6
+ metadata.gz: 7559a5a013a7388902290f12c6e669feb81cbdfc8f39497f43581b82e96e246d75ccae9c0b7444e067647d40a145a82a99abb1b87a3a39e9f0772825487026a4
7
+ data.tar.gz: fe834e84a8ead9a7755ef34c8fa1b628df49df00a32a17cff09377239d042f300c489e214fc33b725b28da781ed156d60fcf36ca072b6394a474b428b503f5cd
@@ -64,7 +64,7 @@ module Jira
64
64
  summary = json['fields']['summary']
65
65
  status = json['fields']['status']['name']
66
66
  assignee = json['fields']['assignee']['name']
67
- description = describe ? "\n" + json['fields']['description'] : ""
67
+ description = describe ? "\n" + json['fields']['description'].to_s : ""
68
68
 
69
69
  return Jira::Format.ticket(ticket) +
70
70
  (star ? Jira::Format.star : " ") + " " +
@@ -0,0 +1,10 @@
1
+ module Jira
2
+ class CLI < Thor
3
+
4
+ desc "sprint", "Lists all tickets in active sprint"
5
+ def sprint
6
+ # TODO
7
+ end
8
+
9
+ end
10
+ end
@@ -1,5 +1,5 @@
1
1
  module Jira
2
2
 
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jira-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darren Lin Cheng
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-12 00:00:00.000000000 Z
11
+ date: 2014-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -109,6 +109,7 @@ files:
109
109
  - lib/jira/commands/log.rb
110
110
  - lib/jira/commands/new.rb
111
111
  - lib/jira/commands/rename.rb
112
+ - lib/jira/commands/sprint.rb
112
113
  - lib/jira/commands/transition.rb
113
114
  - lib/jira/commands/version.rb
114
115
  - lib/jira/constants.rb