object_tracer.gemspec
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "object_tracer/version"
Gem::Specification.new do |spec|
spec.name = "object_tracer"
spec.version = ObjectTracer::VERSION
spec.authors = ["st0012"]
spec.email = ["stan001212@gmail.com"]
spec.summary = %q{object_tracer lets you understand what your Ruby objects do without digging into the code}
spec.description = %q{object_tracer lets you understand what your Ruby objects do without digging into the code}
spec.homepage = "https://github.com/st0012/object_tracer"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/st0012/object_tracer"
spec.metadata["changelog_uri"] = "https://github.com/st0012/object_tracer/blob/master/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.require_paths = ["lib"]
spec.add_dependency "method_source", "~> 1.0.0"
spec.add_dependency "pastel", "~> 0.7"
end