No commit activity in last 3 years
No release in over 3 years
Makes it easy to test speed of a certain request
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 4.0.0
~> 10.0
~> 3.4
~> 1.3.11
~> 3.3.0
 Project Readme

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.