-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgit-runner.gemspec
20 lines (17 loc) · 940 Bytes
/
git-runner.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'git-runner/version'
Gem::Specification.new do |gem|
gem.name = "git-runner"
gem.version = GitRunner::VERSION
gem.authors = ["James Brooks"]
gem.email = ["[email protected]"]
gem.summary = "Ruby framework to run tasks after code has been pushed to a Git repository."
gem.description = "GitRunner is a ruby framework to implement and run tasks after code has been pushed to a Git repository. It works by invoking `git-runner` through `hooks/post-update` in your remote Git repository."
gem.homepage = "https://github.com/JamesBrooks/git-runner"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_dependency 'session', '>= 3.1.0'
end