File tree Expand file tree Collapse file tree 8 files changed +34
-31
lines changed Expand file tree Collapse file tree 8 files changed +34
-31
lines changed Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- terjira (0.1.0 )
5
- activesupport (~> 4.0 )
4
+ terjira (0.1.1 )
5
+ activesupport (= 4.0.13 )
6
6
jira-ruby (~> 1.1 )
7
7
pastel (~> 0.6.1 )
8
8
thor (~> 0.19 )
13
13
GEM
14
14
remote: https://rubygems.org/
15
15
specs:
16
- activesupport (4.2.7.1 )
17
- i18n (~> 0.7 )
18
- json (~> 1.7 , >= 1.7.7 )
19
- minitest (~> 5.1 )
20
- thread_safe (~> 0.3 , >= 0.3.4 )
21
- tzinfo (~> 1.1 )
16
+ activesupport (4.0.13 )
17
+ i18n (~> 0.6 , >= 0.6.9 )
18
+ minitest (~> 4.2 )
19
+ multi_json (~> 1.3 )
20
+ thread_safe (~> 0.1 )
21
+ tzinfo (~> 0.3.37 )
22
22
codeclimate-test-reporter (1.0.3 )
23
23
simplecov
24
24
coderay (1.1.1 )
31
31
oauth (~> 0.5 , >= 0.5.0 )
32
32
json (1.8.3 )
33
33
method_source (0.8.2 )
34
- minitest (5.10.1 )
34
+ minitest (4.7.5 )
35
+ multi_json (1.12.1 )
35
36
necromancer (0.3.0 )
36
37
oauth (0.5.1 )
37
38
pastel (0.6.1 )
79
80
tty-screen (~> 0.5.0 )
80
81
unicode-display_width (~> 1.1.0 )
81
82
verse (~> 0.5.0 )
82
- tzinfo (1.2.2 )
83
- thread_safe (~> 0.1 )
83
+ tzinfo (0.3.52 )
84
84
unicode-display_width (1.1.2 )
85
85
unicode_utils (1.4.0 )
86
86
verse (0.5.0 )
@@ -93,11 +93,11 @@ PLATFORMS
93
93
94
94
DEPENDENCIES
95
95
bundler (~> 1.11 )
96
- codeclimate-test-reporter (~> 1.0.0 )
96
+ codeclimate-test-reporter (~> 1.0 )
97
97
pry (~> 0.10.0 )
98
98
rake (~> 10.0 )
99
99
rspec (~> 3.5 )
100
- simplecov
100
+ simplecov ( ~> 0 )
101
101
terjira !
102
102
103
103
BUNDLED WITH
Original file line number Diff line number Diff line change
1
+ [ ![ Gem Version] ( https://badge.fury.io/rb/terjira.svg )] ( https://badge.fury.io/rb/terjira )
1
2
[ ![ Build Status] ( https://travis-ci.org/keepcosmos/terjira.svg?branch=master )] ( https://travis-ci.org/keepcosmos/terjira )
2
3
[ ![ Test Coverage] ( https://codeclimate.com/github/keepcosmos/terjira/badges/coverage.svg )] ( https://codeclimate.com/github/keepcosmos/terjira/coverage )
3
4
[ ![ Code Climate] ( https://codeclimate.com/github/keepcosmos/terjira/badges/gpa.svg )] ( https://codeclimate.com/github/keepcosmos/terjira )
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
2
+ # Do I need bundler setup?
3
+ # require "bundler/setup"
4
4
require "terjira"
5
5
6
6
# You can add fixtures and/or initialization code here to make experimenting
7
7
# with your gem easier. You can also use a different console, if you like.
8
8
9
9
# (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB . start
10
+ begin
11
+ require "pry"
12
+ Pry . start
13
+ rescue
14
+ require "irb"
15
+ IRB . start
16
+ end
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
- require 'bundler/setup'
2
+ # Do I need bundler setup?
3
+ # require 'bundler/setup'
3
4
require 'terjira'
4
5
require 'json'
5
6
Original file line number Diff line number Diff line change 1
- require 'pry'
2
1
require_relative 'terjira/ext/jira_ruby'
3
2
require_relative 'terjira/ext/tty_prompt'
4
3
require 'terjira/version'
Original file line number Diff line number Diff line change @@ -116,15 +116,15 @@ def issue_sutats_bar(issue)
116
116
def colorize_issue_type ( issue_type )
117
117
title = " #{ issue_type . name } "
118
118
if title =~ /bug/i
119
- pastel . on_red . bold ( title )
119
+ pastel . on_red . white . bold ( title )
120
120
elsif title =~ /task/i
121
- pastel . on_blue . bold ( title )
121
+ pastel . on_blue . white . bold ( title )
122
122
elsif title =~ /story/i
123
- pastel . on_green . bold ( title )
123
+ pastel . on_green . white . bold ( title )
124
124
elsif title =~ /epic/i
125
- pastel . on_magenta . bold ( title )
125
+ pastel . on_magenta . white . bold ( title )
126
126
else
127
- pastel . on_cyan . bold ( title )
127
+ pastel . on_cyan . white . bold ( title )
128
128
end
129
129
end
130
130
Original file line number Diff line number Diff line change 1
1
module Terjira
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1' . freeze
3
3
end
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
23
23
spec . add_dependency "thor" , "~> 0.19"
24
24
spec . add_dependency "jira-ruby" , "~> 1.1"
25
- spec . add_dependency "activesupport" , "~> 4.0"
25
+ spec . add_dependency "activesupport" , "4.0.13 "
26
26
27
27
spec . add_dependency "tty-table" , "~> 0.6.0"
28
28
spec . add_dependency "tty-prompt" , "~> 0.8.0"
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
spec . add_development_dependency "bundler" , "~> 1.11"
33
33
spec . add_development_dependency "rake" , "~> 10.0"
34
34
spec . add_development_dependency "rspec" , "~> 3.5"
35
- spec . add_development_dependency "simplecov"
36
- spec . add_development_dependency "codeclimate-test-reporter" , "~> 1.0.0 "
35
+ spec . add_development_dependency "simplecov" , "~> 0"
36
+ spec . add_development_dependency "codeclimate-test-reporter" , "~> 1.0"
37
37
spec . add_development_dependency "pry" , "~> 0.10.0"
38
38
end
You can’t perform that action at this time.
0 commit comments