-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdbg-rb.gemspec
More file actions
26 lines (24 loc) · 884 Bytes
/
dbg-rb.gemspec
File metadata and controls
26 lines (24 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- 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 debugging 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 "json"
s.add_development_dependency "ostruct"
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