# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require 'braid/version' Gem::Specification.new do |s| s.name = %q{braid} s.version = Braid::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Cristi Balan", "Norbert Crombach"] s.email = %q{evil@che.lu} s.homepage = %q{http://evil.che.lu/projects/braid} s.summary = %q{A simple tool for tracking vendor branches in git.} s.description = %q{A simple tool for tracking vendor branches in git.} s.rubyforge_project = %q{braid} 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.default_executable = %q{braid} s.require_paths = ["lib"] s.has_rdoc = false s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "braid", "--main"] s.add_dependency(%q
, [">= 4.2.0"]) s.add_dependency(%q, [">= 1.0.1"]) unless defined?(JRUBY_VERSION) s.add_development_dependency(%q, [">= 0.10.0"]) s.add_development_dependency(%q, [">= 0.9.11"]) end