# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'git_httpsable/push/version' Gem::Specification.new do |spec| spec.name = 'git_httpsable-push' spec.version = GitHttpsable::Push::VERSION spec.authors = ['sanemat'] spec.email = ['o.gata.ken@gmail.com'] spec.summary = '`git push` to https repo securely.' spec.description = '`git push` to https repo securely.' spec.homepage = 'https://github.com/packsaddle/ruby-git_httpsable-push' spec.license = 'MIT' spec.files = \ `git ls-files -z` .split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } .reject do |f| [ '.travis.yml', 'circle.yml', '.tachikoma.yml' ].include?(f) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'thor' spec.add_runtime_dependency 'git' spec.add_runtime_dependency 'git_clone_url' spec.add_development_dependency 'bundler', '~> 1.8' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'test-unit' spec.add_development_dependency 'mocha' end