[FEATURE] Add Data API support with routing metadata headers and pagination #26
+1,304
−7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Adds comprehensive Data API support to the Ruby SDK, following the pattern established in the Node.js SDK.
Changes
Core Implementation
DataApiclass (lib/learnosity/sdk/request/data_api.rb)request()- Make single authenticated Data API requestsrequest_iter()- Iterate through paginated responses (returns Enumerator)results_iter()- Iterate through individual results across pages (returns Enumerator)X-Learnosity-Consumer,X-Learnosity-Action,X-Learnosity-SDKRails Quickstart Integration
app/controllers/data_api_controller.rbapp/views/data_api/index.html.erb/data_api/indexRuby 2.6 Compatibility Fixes
springandspring-watcher-listengems (require Ruby 2.7+)require 'logger'toconfig/boot.rbfor Rails 6.1 compatibilityTesting
spec/learnosity/sdk/request/data_api_spec.rbspec/integration/data_api_spec.rbexamples/simple/data_api_example.rbDocumentation
REFERENCE.mdwith Data API usage examplesREADME.mdwith Ruby version compatibility notesTesting
All existing tests pass. New tests added for Data API functionality.