CloudScrape Ruby Client 
Wrapper for CloudScrape API.
Requirements
- Ruby 
> 1.9.x 
Installation
Add this line to your application's Gemfile:
gem 'cloud_scrape'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cloud_scrape
Configuration
CloudScrape.configure do |config|
  config.base_url = "https://app.cloudscrape.com/api/"
  config.api_key = "pol6BFzsASYw4gQBl02b24nt"
  config.account_id = "a814a8r2-a664-4rcb-759c-9de21744117a"
  config.user_agent_app = "MY-AGENT"
  config.user_agent_version = "1.0"
  config.timeout = 60000
  config.verbose = true
  config.logger = Rails.logger
end
Some configuration can be set by environment variables:
CLOUD_SCRAPE_CLIENT_BASE_URL="https://app.cloudscrape.com/api/"
CLOUD_SCRAPE_CLIENT_API_KEY="pol6BFzsASYw4gQBl02b24nt"
CLOUD_SCRAPE_CLIENT_ACCOUNT_ID="a814a8r2-a664-4rcb-759c-9de21744117a"
CLOUD_SCRAPE_CLIENT_USER_AGENT_APP="MY-AGENT"
CLOUD_SCRAPE_CLIENT_USER_AGENT_VERSION="1.0"
CLOUD_SCRAPE_CLIENT_TIMEOUT=60000
CLOUD_SCRAPE_CLIENT_VERBOSE=true
base_urlsets the CloudScrape API urlhttps://app.cloudscrape.com/api/api_keysets the CloudScrape API Keyniluser_agent_appsets the UserAgent app sent to CloudScrapeCS-RUBY-CLIENTuser_agent_versionsets the UserAgent version sent to CloudScrape1.0timeoutsets the CloudScrape API request timeout3600verboseshould all output be printed to STDOUTfalseloggerLogger object.Logger
Usage
# Create client (optional arguments to override configuration)
client = CloudScrape.new(
  api_key: "pol6BFzsASYw4gQBl02b24nt",
  account_id: "a814a8r2-a664-4rcb-759c-9de21744117a"
)
Runs (Execute) Docs
execution_id = client.runs(run_id).execute
Runs (Execute with Input) Docs
When connect: true is passed execution will upload it's result to configured integrations for this run.
execution_id = client.runs(run_id).execute(input: { url: 'http://google.com' }, connect: true)
Executions (Get) Docs
execution = client.executions(execution_id).get
execution.queued? # => false
execution.pending? # => true
execution.running? # => false
execution.failed? # => false
execution.stopped? # => false
execution.ok? # => false
Executions (Remove) Docs
client.executions(execution_id).remove
Executions (Get Result) Docs
Methods are dynamically defined based on headers.
execution = client.executions(execution_id).result
execution.response # => { headers: [...], rows: [...] }
execution.as_hash # => { ... }
Executions (Stop) Docs
client.executions(execution_id).stop
Executions (Continue) Docs
client.executions(execution_id).continue
Postman File
Download and add the Postman File for API endpoints.
Testing
Ensure CLOUD_SCRAPE_CLIENT_API_KEY_OVERRIDE and CLOUD_SCRAPE_CLIENT_ACCOUNT_ID_OVERRIDE environment variable is set when recording VCR cassettes.
# Includes Rubocop
$ bin/test
Development
After checking out the repo, run bin/setup to install dependencies. Then, run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
- Fork it ( https://github.com/cloudscrape/cloudscrape-client-ruby/fork )
 - Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
 
License
The gem is available as open source under the terms of the MIT License.