File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
.idea
2
2
.bundle
3
+ .byebug_history
3
4
.rvmrc
4
5
vendor
5
6
tmp
Original file line number Diff line number Diff line change 28
28
thor (>= 0.19 , < 2.0 )
29
29
builder (3.2.4 )
30
30
bump (0.10.0 )
31
+ byebug (11.1.3 )
31
32
celluloid (0.16.0 )
32
33
timers (~> 4.0.0 )
33
34
childprocess (3.0.0 )
35
+ coderay (1.1.3 )
34
36
concurrent-ruby (1.1.10 )
35
37
contracts (0.16.1 )
36
38
crack (0.4.5 )
95
97
crass (~> 1.0.2 )
96
98
nokogiri (>= 1.5.9 )
97
99
marcel (1.0.2 )
100
+ method_source (1.0.0 )
98
101
mime-types (3.4.1 )
99
102
mime-types-data (~> 3.2015 )
100
103
mime-types-data (3.2022.0105 )
101
104
multi_test (0.1.2 )
102
105
multipart-post (2.1.1 )
103
106
nokogiri (1.13.4-x86_64-darwin )
104
107
racc (~> 1.4 )
108
+ pry (0.14.1 )
109
+ coderay (~> 1.1 )
110
+ method_source (~> 1.0 )
105
111
public_suffix (4.0.7 )
106
112
racc (1.6.0 )
107
113
rack (1.6.13 )
@@ -177,7 +183,9 @@ PLATFORMS
177
183
DEPENDENCIES
178
184
aruba
179
185
bump
186
+ byebug
180
187
cucumber
188
+ pry
181
189
rake
182
190
rspec
183
191
webmock
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def find_app_id(product_name = 'v2') # use the v2 endpoint if no product name is
67
67
app_name = get_value_from_stdin ( 'Enter the name of the app:' )
68
68
69
69
response = cached_connection . get ( "/api/#{ product_name } /apps/owned.json" )
70
- owned_apps_json = json_or_die ( response . body )
70
+ owned_apps_json = json_or_die ( response . env . request_body )
71
71
72
72
unless response . success? && owned_apps_json . has_key? ( 'apps' )
73
73
say_error_and_exit "Unable to retrieve apps. Please check your credentials and internet connection."
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ Gem::Specification.new do |s|
30
30
s . add_development_dependency 'cucumber'
31
31
s . add_development_dependency 'aruba'
32
32
s . add_development_dependency 'rspec'
33
+ s . add_development_dependency 'pry'
34
+ s . add_development_dependency 'byebug'
33
35
s . add_development_dependency 'bump'
34
36
s . add_development_dependency 'webmock'
35
37
s . add_development_dependency 'rake'
You can’t perform that action at this time.
0 commit comments