# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "gitspotter" Gem::Specification.new do |s| s.name = "Gitspotter" s.version = Gitspotter::VERSION s.authors = ["Thomas Kjeldahl Nilsson"] s.email = ["thomas@kjeldahlnilsson.net"] s.homepage = "https://gitorious.org/gitspotter/gitspotter" s.summary = %q{Visualize git log/graph in html} s.description = %q{Visualize git log/graph in html} s.rubyforge_project = "gitspotter" 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"] # specify any dependencies here; for example: # s.add_development_dependency "rspec" s.add_development_dependency "minitest" s.add_development_dependency "shoulda" s.add_development_dependency "shoulda-context" end