Skip to content

Releases: shopsavvy/sdk-ruby

v1.0.1 - Enhanced Documentation

30 Jul 09:04

Choose a tag to compare

Enhanced Documentation and Examples

This release significantly enhances the Ruby SDK with comprehensive documentation and examples:

📚 Documentation Improvements

  • 30-second Quick Start: Get up and running immediately
  • Feature Comparison Table: Compare plans and capabilities
  • Complete API Reference: Every method documented with Ruby examples
  • Advanced Usage Examples: Price analysis, retailer comparison, bulk monitoring
  • Production Deployment: Rails, Sinatra, and Sidekiq integration guides
  • Real-world Use Cases: Competitive analysis, inventory management, market research

🔧 Technical Updates

  • Updated gem name references to correct shopsavvy-sdk
  • Enhanced Ruby examples with proper error handling
  • Added comprehensive testing and development guides
  • Improved code organization and readability

📦 Installation

gem install shopsavvy-sdk

🚀 Quick Start

require 'shopsavvy_data_api'
client = ShopsavvyDataApi.new(api_key: 'ss_live_your_api_key_here')
product = client.get_product_details('012345678901')
puts "#{product.data.name} - Best price: $#{client.get_current_offers('012345678901').data.min_by(&:price).price}"

Published to RubyGems as shopsavvy-sdk@1.0.1