File tree 5 files changed +36
-33
lines changed
5 files changed +36
-33
lines changed Original file line number Diff line number Diff line change 10
10
- name : Clone repo
11
11
uses : actions/checkout@v2
12
12
13
- - uses : actions /setup-ruby@v1
13
+ - uses : ruby /setup-ruby@v1.99.0
14
14
with :
15
15
ruby-version : ' 2.6' # Version range or exact version of a Ruby version to use, using semvers version range syntax.
16
16
Original file line number Diff line number Diff line change 7
7
GEM
8
8
remote: https://rubygems.org/
9
9
specs:
10
- codecov (0.1.10 )
10
+ codecov (0.1.21 )
11
11
json
12
12
simplecov
13
- url
14
- diff-lcs (1.3 )
15
- docile (1.1.5 )
13
+ diff-lcs (1.5.0 )
14
+ docile (1.4.0 )
16
15
hpricot (0.8.6 )
17
16
json (2.3.0 )
18
- multi_json (1.12.2 )
19
- mustache (1.0.5 )
20
- pygments.rb (1.2.0 )
21
- multi_json (>= 1.0.0 )
22
- rake (12.1.0 )
23
- rdiscount (2.2.0.1 )
17
+ mustache (1.1.1 )
18
+ pygments.rb (2.3.0 )
19
+ rake (13.0.6 )
20
+ rdiscount (2.2.0.2 )
24
21
ronn (0.7.3 )
25
22
hpricot (>= 0.8.2 )
26
23
mustache (>= 0.7.0 )
27
24
rdiscount (>= 1.5.8 )
28
- rspec (3.6 .0 )
29
- rspec-core (~> 3.6 .0 )
30
- rspec-expectations (~> 3.6 .0 )
31
- rspec-mocks (~> 3.6 .0 )
32
- rspec-core (3.6 .0 )
33
- rspec-support (~> 3.6 .0 )
34
- rspec-expectations (3.6 .0 )
25
+ rspec (3.11 .0 )
26
+ rspec-core (~> 3.11 .0 )
27
+ rspec-expectations (~> 3.11 .0 )
28
+ rspec-mocks (~> 3.11 .0 )
29
+ rspec-core (3.11 .0 )
30
+ rspec-support (~> 3.11 .0 )
31
+ rspec-expectations (3.11 .0 )
35
32
diff-lcs (>= 1.2.0 , < 2.0 )
36
- rspec-support (~> 3.6 .0 )
37
- rspec-mocks (3.6 .0 )
33
+ rspec-support (~> 3.11 .0 )
34
+ rspec-mocks (3.11 .0 )
38
35
diff-lcs (>= 1.2.0 , < 2.0 )
39
- rspec-support (~> 3.6 .0 )
40
- rspec-support (3.6 .0 )
36
+ rspec-support (~> 3.11 .0 )
37
+ rspec-support (3.11 .0 )
41
38
rspec_junit_formatter (0.3.0 )
42
39
rspec-core (>= 2 , < 4 , != 2.12.0 )
43
- simplecov (0.15.1 )
44
- docile (~> 1.1.0 )
45
- json ( >= 1.8 , < 3 )
46
- simplecov-html (~> 0.10.0 )
47
- simplecov-html (0.10.2 )
48
- url (0.3.2 )
40
+ simplecov (0.21.2 )
41
+ docile (~> 1.1 )
42
+ simplecov-html ( ~> 0.11 )
43
+ simplecov_json_formatter (~> 0.1 )
44
+ simplecov-html (0.12.3 )
45
+ simplecov_json_formatter (0.1.4 )
49
46
50
47
PLATFORMS
51
48
ruby
@@ -60,4 +57,4 @@ DEPENDENCIES
60
57
rspec_junit_formatter (~> 0.3.0 )
61
58
62
59
BUNDLED WITH
63
- 1.15.4
60
+ 2.2.16
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ module GHI
5
5
module Version
6
6
MAJOR = 1
7
7
MINOR = 2
8
- PATCH = 0
8
+ PATCH = 1
9
9
PRE = nil
10
10
11
11
VERSION = [ MAJOR , MINOR , PATCH , PRE ] . compact . join '.'
@@ -1359,7 +1359,10 @@ module GHI
1359
1359
def request method , path , options
1360
1360
path = "/api/v3#{ path } " if HOST != DEFAULT_HOST
1361
1361
1362
- path = URI . escape path
1362
+ # puts "\n 1#{path}\n"
1363
+ # path = CGI.escape path
1364
+ # puts "\n 2#{path}\n"
1365
+
1363
1366
if params = options [ :params ] and !params . empty?
1364
1367
q = params . map { |k , v | "#{ CGI . escape k . to_s } =#{ CGI . escape v . to_s } " }
1365
1368
path += "?#{ q . join '&' } "
Original file line number Diff line number Diff line change @@ -97,7 +97,10 @@ def delete path, options = {}
97
97
def request method , path , options
98
98
path = "/api/v3#{ path } " if HOST != DEFAULT_HOST
99
99
100
- path = URI . escape path
100
+ # puts "\n 1#{path}\n"
101
+ # path = CGI.escape path
102
+ # puts "\n 2#{path}\n"
103
+
101
104
if params = options [ :params ] and !params . empty?
102
105
q = params . map { |k , v | "#{ CGI . escape k . to_s } =#{ CGI . escape v . to_s } " }
103
106
path += "?#{ q . join '&' } "
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module Commands
3
3
module Version
4
4
MAJOR = 1
5
5
MINOR = 2
6
- PATCH = 0
6
+ PATCH = 1
7
7
PRE = nil
8
8
9
9
VERSION = [ MAJOR , MINOR , PATCH , PRE ] . compact . join '.'
You can’t perform that action at this time.
0 commit comments