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 11.idea
22.bundle
3+ .byebug_history
34.rvmrc
45vendor
56tmp
Original file line number Diff line number Diff line change 2828 thor (>= 0.19 , < 2.0 )
2929 builder (3.2.4 )
3030 bump (0.10.0 )
31+ byebug (11.1.3 )
3132 celluloid (0.16.0 )
3233 timers (~> 4.0.0 )
3334 childprocess (3.0.0 )
35+ coderay (1.1.3 )
3436 concurrent-ruby (1.1.10 )
3537 contracts (0.16.1 )
3638 crack (0.4.5 )
9597 crass (~> 1.0.2 )
9698 nokogiri (>= 1.5.9 )
9799 marcel (1.0.2 )
100+ method_source (1.0.0 )
98101 mime-types (3.4.1 )
99102 mime-types-data (~> 3.2015 )
100103 mime-types-data (3.2022.0105 )
101104 multi_test (0.1.2 )
102105 multipart-post (2.1.1 )
103106 nokogiri (1.13.4-x86_64-darwin )
104107 racc (~> 1.4 )
108+ pry (0.14.1 )
109+ coderay (~> 1.1 )
110+ method_source (~> 1.0 )
105111 public_suffix (4.0.7 )
106112 racc (1.6.0 )
107113 rack (1.6.13 )
@@ -177,7 +183,9 @@ PLATFORMS
177183DEPENDENCIES
178184 aruba
179185 bump
186+ byebug
180187 cucumber
188+ pry
181189 rake
182190 rspec
183191 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
6767 app_name = get_value_from_stdin ( 'Enter the name of the app:' )
6868
6969 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 )
7171
7272 unless response . success? && owned_apps_json . has_key? ( 'apps' )
7373 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|
3030 s . add_development_dependency 'cucumber'
3131 s . add_development_dependency 'aruba'
3232 s . add_development_dependency 'rspec'
33+ s . add_development_dependency 'pry'
34+ s . add_development_dependency 'byebug'
3335 s . add_development_dependency 'bump'
3436 s . add_development_dependency 'webmock'
3537 s . add_development_dependency 'rake'
You can’t perform that action at this time.
0 commit comments