Socket
Book a DemoInstallSign in
Socket

tick

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tick

0.1.3
bundlerRubygems
Version published
Maintainers
1
Created
Source

Tick

About

Tick benchmark your method and print it in color

Installation

gem install tick 

Usge

include Tick

class Foo 
  include Tick 
end

Tick your method define method

def foo 
end 
tick :foo  

Sample output without color

TICK: method 'foo' in class 'Foo'  (0.1 s)

Customize message for each method

tick :foo, :message => "benchmark for foo"
tick :foo, :message => lambda {|class_name, method_name| " #{class_name}-#{method_name}"}

Configuration

By default you don't need any configuration.

Enable tick:

Tick.enabled = true 

default: true

Whether print benchmark in color

Tick.color = true 

default: true

Logger:

Tick.logger = Logger.new(STDOUT) 

default: Rails.logger if in Rails environment otherwise Logger.new(STDOUT)

Customize messages:

Tick.desc_message = lambda { |class_name, method_name| "TIME c:#{class_name} m:#{method_name}" }
Tick.time_message = lambda { |sec| "COST (#{sec})" }

Default:

  • desc_message: "TICK: method '#{method_name.to_s}' in class '#{self.class.name}'"
  • time_message: "(#{sec.to_s} ms)"

Set 256 color:

Tick.desc_color = "#FFC482"
Tick.time_color = "#FFC482"

Default:

  • desc_color: yellow
  • time_color: cyan

Special Thanks To

  • sickill's rainbow gem

FAQs

Package last updated on 04 Jan 2011

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.