Sha256: 95b7f58f1f64013e87b14a7e9d6f4cd80f161daae679adfb166f83e9a760cf57

Contents?: true

Size: 634 Bytes

Versions: 1

Compression:

Stored size: 634 Bytes

Contents

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
name = "git-graph"
require "#{name.gsub("-","/")}/version"

Gem::Specification.new name, Git::Graph::VERSION do |s|
  s.summary = "Make graphs from your git history"
  s.authors = ["Michael Grosser"]
  s.email = "michael@grosser.it"
  s.homepage = "http://github.com/grosser/#{name}"
  s.files = `git ls-files`.split("\n")
  s.license = "MIT"
  cert = File.expand_path("~/.ssh/gem-private-key-grosser.pem")
  if File.exist?(cert)
    s.signing_key = cert
    s.cert_chain = ["gem-public_cert.pem"]
  end
  s.executables = ["git-graph"]
  s.add_runtime_dependency "gchartrb"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git-graph-0.1.3 git-graph.gemspec