Sha256: 8a812340e449343be460e661e6df455c056b0bb85662549dcfe0a4451b64f8cd
Contents?: true
Size: 990 Bytes
Versions: 1
Compression:
Stored size: 990 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) require "introspection/version" Gem::Specification.new do |s| s.name = "introspection" s.version = Introspection::VERSION s.platform = Gem::Platform::RUBY s.authors = ["James Mead"] s.email = ["james@floehopper.org"] s.homepage = "http://jamesmead.org" s.summary = %q{Dynamic inspection of the hierarchy of method definitions on a Ruby object.} s.description = %q{} s.required_rubygems_version = ">= 1.3.6" s.rubyforge_project = "introspection" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_dependency "metaclass", "~> 0.0.1" s.add_dependency "instantiator", "~> 0.0.3" s.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
introspection-0.0.2 | introspection.gemspec |