Sha256: 4014f670282e422c1282f615ae1627f2ad20c0851443ee63fb1ee6ef0217b20b

Contents?: true

Size: 995 Bytes

Versions: 4

Compression:

Stored size: 995 Bytes

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "method_call_tree/version"

Gem::Specification.new do |spec|
  spec.name          = "method_call_tree"
  spec.version       = MethodCallTree::VERSION
  spec.authors       = ["Shuichi Tamayose"]
  spec.email         = ["tmshuichi@gmail.com"]

  spec.summary       = %q{method call tree}
  spec.description   = %q{method call tree}
  spec.homepage      = "https://github.com/siman-man/method_call_tree"
  spec.license       = "MIT"
  spec.required_ruby_version = ">= 2.1.0"


  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"]

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
method_call_tree-1.2.0 method_call_tree.gemspec
method_call_tree-1.1.0 method_call_tree.gemspec
method_call_tree-1.0.1 method_call_tree.gemspec
method_call_tree-1.0.0 method_call_tree.gemspec