terjira 0.2.3 → 0.2.4

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: 8bc688d0fc988c4c13e0aa1062a838a09943a86e
4
- data.tar.gz: d4561eca0805efdb80904092b115dcbecd62f685
3
+ metadata.gz: 5d3733079b4d09143e26bea0fad8b159c6b81de3
4
+ data.tar.gz: 8c1dd6a97806d13fc5607f02a7888874b5cdf481
5
5
  SHA512:
6
- metadata.gz: ed1d69fdef510881cdc5660da8b5da534076a62b2cc44f7f3ad865481c7ba8d147f7544ffcc61b299d1059e0544108be7a0afa651faf4eafbfefcf7b337aa851
7
- data.tar.gz: bd8f00b89bd433a7205f67c34848ddc8cf892efe4e38c177edda06348aa27fbebd2d347a97a3de33d1dbce4dd36d030dc7af543e6ce9e2dd4bad34bf36fbf2c5
6
+ metadata.gz: d0fd7ef65591f5ee18b5e2aa9898e3d810d17bcbdad8b5e91a4cbcda5b3476731618e33e394d54d8239325c841cca5c406acf0ea802ca30212c10b11af533b87
7
+ data.tar.gz: ce4e315d4e0962a18185f6c99c801d338183a661b70e2d0d707dc1263c208297984078af71df4bb0f10df14233455e8d0c33d6a5604cc3a2774c4b4e4b746c9f
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- terjira (0.2.3)
4
+ terjira (0.2.4)
5
5
  activesupport (= 4.0.13)
6
6
  jira-ruby (~> 1.1)
7
7
  pastel (~> 0.6.1)
data/README.md CHANGED
@@ -55,6 +55,9 @@ Sprint:
55
55
  Issue:
56
56
  jira issue help [COMMAND] # Describe one specific subcommand
57
57
  jira issue ( ls | list ) # List of issues
58
+ # default assignee option is current loggined user
59
+ # To show issues of all users(include no assignee)
60
+                                     # pass `--assignee ALL` option.
58
61
  jira issue [ISSUE_KEY] # Show detail of the issue
59
62
  jira issue assign [ISSUE_KEY] ([ASSIGNEE]) # Assign the issue to user
60
63
  jira issue comment [ISSUE_KEY] # Write comment on the issue
@@ -14,7 +14,7 @@ module Terjira
14
14
  values = value.map { |v| "\"#{v.key_value}\"" }.join(',')
15
15
  "#{key} IN (#{values})"
16
16
  else
17
- "#{key}=#{value.key_value}"
17
+ "#{key}=\"#{value.key_value}\""
18
18
  end
19
19
  end.reject(&:blank?).join(' AND ')
20
20
 
@@ -1,7 +1,7 @@
1
1
  require 'terjira/utils/file_cache'
2
2
 
3
3
  module Terjira
4
- VERSION = '0.2.3'.freeze
4
+ VERSION = '0.2.4'.freeze
5
5
 
6
6
  class VersionChecker
7
7
  VERSION_CHECK_DURATION = (60 * 60 * 24 * 5).freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terjira
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaehyun Shin