datarobot-ai_api 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +3 -0
  4. data/README.md +12 -0
  5. data/Rakefile +54 -0
  6. data/datarobot-ai_api.gemspec +19 -0
  7. data/lib/datarobot.rb +1 -0
  8. data/lib/datarobot/ai_api.rb +190 -0
  9. data/lib/datarobot/ai_api/ai.rb +191 -0
  10. data/lib/datarobot/ai_api/dataset.rb +99 -0
  11. data/lib/datarobot/ai_api/deployment.rb +20 -0
  12. data/lib/datarobot/ai_api/evaluation.rb +21 -0
  13. data/lib/datarobot/ai_api/learning_session.rb +112 -0
  14. data/lib/datarobot/ai_api/output.rb +58 -0
  15. data/lib/datarobot/ai_api/page.rb +50 -0
  16. data/lib/datarobot/ai_api/prediction.rb +20 -0
  17. data/lib/datarobot/ai_api/refreshable.rb +20 -0
  18. data/lib/datarobot/ai_api/task.rb +86 -0
  19. data/test/cassettes/Datarobot_AiApi/_ping/returns_unauthorized_when_not_authorized.yml +41 -0
  20. data/test/cassettes/Datarobot_AiApi/_ping/works_when_authorized.yml +58 -0
  21. data/test/cassettes/Datarobot_AiApi/_ping_me/returns_unauthorized_when_not_authorized.yml +41 -0
  22. data/test/cassettes/Datarobot_AiApi/_ping_me/works_when_authorized.yml +58 -0
  23. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/404s_if_there_is_no_matching_output.yml +190 -0
  24. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_find/should_accept_a_block.yml +66 -0
  25. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/can_go_to_the_next_page.yml +132 -0
  26. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +123 -0
  27. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/can_go_to_the_previous_page.yml +262 -0
  28. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +67 -0
  29. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh/can_refresh_to_a_new_object.yml +129 -0
  30. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh_/can_refresh_its_values.yml +129 -0
  31. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_datasets_to_AIs.yml +120 -0
  32. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_learning_sessions_to_AIs.yml +120 -0
  33. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_be_trained.yml +4554 -0
  34. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_create_AIs.yml +120 -0
  35. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_delete_AIs.yml +58 -0
  36. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_find_AIs.yml +63 -0
  37. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_datasets.yml +131 -0
  38. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_outputs.yml +124 -0
  39. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_list_AIs.yml +123 -0
  40. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_predict_things.yml +190 -0
  41. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_create_AIs.yml +43 -0
  42. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_find_AIs.yml +43 -0
  43. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_list_AIs.yml +45 -0
  44. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_find/should_accept_a_block.yml +64 -0
  45. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/can_go_to_the_next_page.yml +126 -0
  46. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +113 -0
  47. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/can_go_to_the_previous_page.yml +250 -0
  48. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +64 -0
  49. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh/can_refresh_to_a_new_object.yml +125 -0
  50. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
  51. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_delete_datasets.yml +58 -0
  52. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_find_datasets.yml +61 -0
  53. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_file.yml +1077 -0
  54. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_url.yml +55 -0
  55. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_list_datasets.yml +113 -0
  56. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_find/should_accept_a_block.yml +67 -0
  57. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/can_go_to_the_next_page.yml +67 -0
  58. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +100 -0
  59. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/can_go_to_the_previous_page.yml +67 -0
  60. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +100 -0
  61. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh/can_refresh_to_a_new_object.yml +131 -0
  62. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh_/can_refresh_its_values.yml +130 -0
  63. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_create_learning_sessions.yml +2815 -0
  64. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_delete_learning_sessions.yml +58 -0
  65. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_find_learning_sessions.yml +63 -0
  66. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_deployment_data.yml +123 -0
  67. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_evaluation_data.yml +67 -0
  68. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_features.yml +127 -0
  69. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_list_learning_sessions.yml +100 -0
  70. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_create_outputs.yml +60 -0
  71. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_find_named_outputs.yml +123 -0
  72. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_features_of_an_output.yml +184 -0
  73. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_the_evaluation_of_an_output.yml +131 -0
  74. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_list_outputs.yml +124 -0
  75. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_find/should_accept_a_block.yml +63 -0
  76. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh/can_refresh_to_a_new_object.yml +124 -0
  77. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
  78. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_stop_a_task.yml +58 -0
  79. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_wait_until_completed.yml +1138 -0
  80. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/check_the_status_of_a_task.yml +64 -0
  81. data/test/data/delete-me.csv +8037 -0
  82. data/test/data/test.csv +8037 -0
  83. data/test/datarobot/ai_api/test_ai.rb +133 -0
  84. data/test/datarobot/ai_api/test_dataset.rb +64 -0
  85. data/test/datarobot/ai_api/test_learning_session.rb +77 -0
  86. data/test/datarobot/ai_api/test_output.rb +54 -0
  87. data/test/datarobot/ai_api/test_page.rb +50 -0
  88. data/test/datarobot/ai_api/test_prediction.rb +0 -0
  89. data/test/datarobot/ai_api/test_refreshable.rb +39 -0
  90. data/test/datarobot/ai_api/test_task.rb +53 -0
  91. data/test/datarobot/test_ai_api.rb +52 -0
  92. data/test/test_helper.rb +40 -0
  93. metadata +217 -0
@@ -0,0 +1,52 @@
1
+ require 'test_helper'
2
+
3
+ describe "Datarobot::AiApi" do
4
+ before do
5
+ @key="testing"
6
+ end
7
+
8
+ it "is sane" do
9
+ api = Datarobot::AiApi
10
+ # if we make it to here, nothing has exploded
11
+ assert(api)
12
+ end
13
+
14
+ it "can be configured" do
15
+ key = @key
16
+ api = Datarobot::AiApi.configure!(api_key: key)
17
+ # if we make it to here, nothincg has exploded
18
+ assert(api.api_key == key)
19
+ end
20
+
21
+ describe "#ping" do
22
+ it "works when authorized", vcr: true do
23
+ key = @key
24
+ api = Datarobot::AiApi.configure!(api_key: key)
25
+ response_data = api.ping
26
+ assert_equal response_data, {"response" => "pong"}
27
+ end
28
+
29
+ it "returns unauthorized when not authorized", vcr: true do
30
+ api = Datarobot::AiApi.configure!(api_key: '')
31
+ assert_raises Datarobot::AiApi::UnauthorizedError do
32
+ api.ping
33
+ end
34
+ end
35
+ end
36
+
37
+ describe "#ping_me" do
38
+ it "works when authorized", vcr: true do
39
+ key = @key
40
+ api = Datarobot::AiApi.configure!(api_key: key)
41
+ response_data = api.ping
42
+ assert_equal response_data, {"response" => "pong"}
43
+ end
44
+
45
+ it "returns unauthorized when not authorized", vcr: true do
46
+ api = Datarobot::AiApi.configure!(api_key: '')
47
+ assert_raises Datarobot::AiApi::UnauthorizedError do
48
+ api.ping_me
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,40 @@
1
+ require "minitest/autorun"
2
+ require "minitest/spec"
3
+ require "minitest/reporters"
4
+ require "minitest/reporters"
5
+ require "vcr"
6
+ require "minitest-vcr"
7
+ require "webmock"
8
+ require "json"
9
+ require 'pry'
10
+
11
+ require "datarobot/ai_api"
12
+
13
+ class Module
14
+ include Minitest::Spec::DSL
15
+ end
16
+
17
+ VCR.configure do |c|
18
+ c.cassette_library_dir = 'test/cassettes'
19
+ c.hook_into :webmock
20
+ end
21
+
22
+ MiniTest::Spec.class_eval do
23
+ def self.shared_examples
24
+ @shared_examples ||= {}
25
+ end
26
+ end
27
+
28
+ module MiniTest::Spec::SharedExamples
29
+ def shared_examples_for(desc, &block)
30
+ MiniTest::Spec.shared_examples[desc] = block
31
+ end
32
+
33
+ def it_behaves_like(desc)
34
+ self.instance_eval(&MiniTest::Spec.shared_examples[desc])
35
+ end
36
+ end
37
+
38
+ Object.class_eval { include(MiniTest::Spec::SharedExamples) }
39
+
40
+ MinitestVcr::Spec.configure!
metadata ADDED
@@ -0,0 +1,217 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: datarobot-ai_api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - AI API team
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest-reporters
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest-vcr
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: webmock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.6'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.12.2
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.12.2
83
+ - !ruby/object:Gem::Dependency
84
+ name: multipart-post
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.1'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.1'
97
+ description: Provides an interface to the AI API
98
+ email: ai-api-team@datarobot.com
99
+ executables: []
100
+ extensions: []
101
+ extra_rdoc_files: []
102
+ files:
103
+ - ".gitignore"
104
+ - Gemfile
105
+ - README.md
106
+ - Rakefile
107
+ - datarobot-ai_api.gemspec
108
+ - lib/datarobot.rb
109
+ - lib/datarobot/ai_api.rb
110
+ - lib/datarobot/ai_api/ai.rb
111
+ - lib/datarobot/ai_api/dataset.rb
112
+ - lib/datarobot/ai_api/deployment.rb
113
+ - lib/datarobot/ai_api/evaluation.rb
114
+ - lib/datarobot/ai_api/learning_session.rb
115
+ - lib/datarobot/ai_api/output.rb
116
+ - lib/datarobot/ai_api/page.rb
117
+ - lib/datarobot/ai_api/prediction.rb
118
+ - lib/datarobot/ai_api/refreshable.rb
119
+ - lib/datarobot/ai_api/task.rb
120
+ - test/cassettes/Datarobot_AiApi/_ping/returns_unauthorized_when_not_authorized.yml
121
+ - test/cassettes/Datarobot_AiApi/_ping/works_when_authorized.yml
122
+ - test/cassettes/Datarobot_AiApi/_ping_me/returns_unauthorized_when_not_authorized.yml
123
+ - test/cassettes/Datarobot_AiApi/_ping_me/works_when_authorized.yml
124
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/404s_if_there_is_no_matching_output.yml
125
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_find/should_accept_a_block.yml
126
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/can_go_to_the_next_page.yml
127
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml
128
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/can_go_to_the_previous_page.yml
129
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml
130
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh/can_refresh_to_a_new_object.yml
131
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh_/can_refresh_its_values.yml
132
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_datasets_to_AIs.yml
133
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_learning_sessions_to_AIs.yml
134
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_be_trained.yml
135
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_create_AIs.yml
136
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_delete_AIs.yml
137
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_find_AIs.yml
138
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_datasets.yml
139
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_outputs.yml
140
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_list_AIs.yml
141
+ - test/cassettes/Datarobot_AiApi_AI/when_authorized/can_predict_things.yml
142
+ - test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_create_AIs.yml
143
+ - test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_find_AIs.yml
144
+ - test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_list_AIs.yml
145
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_find/should_accept_a_block.yml
146
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/can_go_to_the_next_page.yml
147
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml
148
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/can_go_to_the_previous_page.yml
149
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml
150
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh/can_refresh_to_a_new_object.yml
151
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh_/can_refresh_its_values.yml
152
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_delete_datasets.yml
153
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_find_datasets.yml
154
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_file.yml
155
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_url.yml
156
+ - test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_list_datasets.yml
157
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_find/should_accept_a_block.yml
158
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/can_go_to_the_next_page.yml
159
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml
160
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/can_go_to_the_previous_page.yml
161
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml
162
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh/can_refresh_to_a_new_object.yml
163
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh_/can_refresh_its_values.yml
164
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_create_learning_sessions.yml
165
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_delete_learning_sessions.yml
166
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_find_learning_sessions.yml
167
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_deployment_data.yml
168
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_evaluation_data.yml
169
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_features.yml
170
+ - test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_list_learning_sessions.yml
171
+ - test/cassettes/Datarobot_AiApi_Output/when_authorized/can_create_outputs.yml
172
+ - test/cassettes/Datarobot_AiApi_Output/when_authorized/can_find_named_outputs.yml
173
+ - test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_features_of_an_output.yml
174
+ - test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_the_evaluation_of_an_output.yml
175
+ - test/cassettes/Datarobot_AiApi_Output/when_authorized/can_list_outputs.yml
176
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/_find/should_accept_a_block.yml
177
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh/can_refresh_to_a_new_object.yml
178
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh_/can_refresh_its_values.yml
179
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/can_stop_a_task.yml
180
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/can_wait_until_completed.yml
181
+ - test/cassettes/Datarobot_AiApi_Task/when_authorized/check_the_status_of_a_task.yml
182
+ - test/data/delete-me.csv
183
+ - test/data/test.csv
184
+ - test/datarobot/ai_api/test_ai.rb
185
+ - test/datarobot/ai_api/test_dataset.rb
186
+ - test/datarobot/ai_api/test_learning_session.rb
187
+ - test/datarobot/ai_api/test_output.rb
188
+ - test/datarobot/ai_api/test_page.rb
189
+ - test/datarobot/ai_api/test_prediction.rb
190
+ - test/datarobot/ai_api/test_refreshable.rb
191
+ - test/datarobot/ai_api/test_task.rb
192
+ - test/datarobot/test_ai_api.rb
193
+ - test/test_helper.rb
194
+ homepage: https://developers.datarobot.com/api
195
+ licenses:
196
+ - Nonstandard
197
+ metadata: {}
198
+ post_install_message:
199
+ rdoc_options: []
200
+ require_paths:
201
+ - lib
202
+ required_ruby_version: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ required_rubygems_version: !ruby/object:Gem::Requirement
208
+ requirements:
209
+ - - ">="
210
+ - !ruby/object:Gem::Version
211
+ version: '0'
212
+ requirements: []
213
+ rubygems_version: 3.0.3
214
+ signing_key:
215
+ specification_version: 4
216
+ summary: A Ruby wrapper for the DataRobot AI API
217
+ test_files: []