Sha256: 352abaadde4cf8399030d36ccc0e46e287eae61ddd53ec4be3b6428d9c10a663
Contents?: true
Size: 881 Bytes
Versions: 4
Compression:
Stored size: 881 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "dbg_rb/version" Gem::Specification.new do |s| s.name = "dbg-rb" s.version = DbgRb::VERSION s.authors = ["pawurb"] s.email = ["contact@pawelurbanek.com"] s.summary = "Simple debuging helper" s.description = "Rust-inspired, puts debugging helper, adding caller info and optional coloring." s.homepage = "http://github.com/pawurb/dbg-rb" s.files = `git ls-files`.split("\n").reject { |f| f.match?(/\.db$/) } s.require_paths = ["lib"] s.license = "MIT" s.add_dependency "binding_of_caller" s.add_dependency "json" s.add_development_dependency "rake" s.add_development_dependency "rspec" s.add_development_dependency "rufo" if s.respond_to?(:metadata=) s.metadata = { "rubygems_mfa_required" => "true" } end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
dbg-rb-0.2.7 | dbg-rb.gemspec |
dbg-rb-0.2.6 | dbg-rb.gemspec |
dbg-rb-0.2.5 | dbg-rb.gemspec |
dbg-rb-0.2.4 | dbg-rb.gemspec |