Sha256: 56b5189782d80620fefa0e8a1708c15b5c66c026a5db0e80927b1927cf2390dc

Contents?: true

Size: 1016 Bytes

Versions: 2

Compression:

Stored size: 1016 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'constree/version'

Gem::Specification.new do |spec|
  spec.name          = "constree"
  spec.version       = Constree::VERSION
  spec.authors       = ["ken"]
  spec.email         = ["block24block@gmail.com"]

  spec.summary       = %q{recursively show the structure of constants in a module}
  spec.homepage      = "https://github.com/turnon/constree"
  spec.license       = "MIT"

  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.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"

  spec.add_dependency "tree_graph", "~> 0.2.0"
  spec.add_dependency "tree_html", "~> 0.1.10"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
constree-0.1.9 constree.gemspec
constree-0.1.8 constree.gemspec