Sha256: a73d0a021ca82c5b8c1a46f362005765e2ff381c1ea32fb0ac3d8449dd679a81
Contents?: true
Size: 959 Bytes
Versions: 2
Compression:
Stored size: 959 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "rotoscope/version" Gem::Specification.new do |s| s.name = "rotoscope" s.version = Rotoscope::VERSION s.authors = ["Jahfer Husain", "Dylan Thacker-Smith"] s.email = "jahfer.husain@shopify.com" s.homepage = "https://github.com/shopify/rotoscope" s.license = "MIT" s.summary = "Tracing Ruby" s.description = "High-performance logger of Ruby method invocations" s.files = %x(git ls-files -z).split("\x0").reject do |f| f.match(%r{^(test)/}) end s.metadata["allowed_push_host"] = "https://rubygems.org/" s.required_ruby_version = ">= 2.2.0" s.extensions = ["ext/rotoscope/extconf.rb"] s.add_development_dependency("minitest", "~> 5.0") s.add_development_dependency("mocha", "~> 0.14") s.add_development_dependency("rake-compiler", "~> 0.9") end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rotoscope-0.3.1.pre.3 | rotoscope.gemspec |
rotoscope-0.3.1.pre.2 | rotoscope.gemspec |