Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simple_speed_tester

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple_speed_tester

  • 1.0.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Simple Speed Tester Gem

Makes it super simple to test the speed of a given request or set of requests.

Especially useful from the console.

Table of Contents

  • Installation
  • Usage
  • Other Things

Installation

Add this line to your application's Gemfile:

gem 'simple_speed_tester'

And then execute: $ bundle Or install it yourself as: $ gem install simple_speed_tester

Usage

SimpleSpeedTester.measure(profile_id, times: num_times)
# @param profile_id [String|Symbol] What key should we use to reference this speed test later? If not specified then we'll just create one.
# @option times [Integer] (optional) How many times should we run this test? You can run the class method multiple times but you can also set this number to easily run it multiple times in one line.

Example: Test speed to google

SimpleSpeedTester.measure("request to google.com", times: 10) { HTTParty.get('https://www.google.com') }
# output: request to google.com >>> {:total_time=>2.25232, :times_called=>10, :avg_time=>0.22523200000000002

Other Things

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jayelkaake/simple_speed_tester. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 21 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc