Sha256: d31850aad1080d922d36791511033e21f7220d2827fc393d288561a85cc7184c
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "time_method/version.rb" Gem::Specification.new do |spec| spec.name = "time_method" spec.version = TimeMethod::VERSION spec.authors = ["Seyon Vasantharajan"] spec.email = ["seyon.vasantharajan@gmail.com"] spec.summary = %q{Easily set methods to profile and view run-times in terminal } spec.description = <<-DESCRIPTION Time Method allows easy setting of runtime without having to alter the code of the methods and also allows DESCRIPTION spec.homepage = "https://github.com/seyonv/time_method" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib","lib/time_method"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "terminal-table" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
time_method-0.1.0 | time_method.gemspec |