-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtbgit.gemspec
More file actions
28 lines (25 loc) · 1.06 KB
/
tbgit.gemspec
File metadata and controls
28 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tbgit/version'
Gem::Specification.new do |spec|
spec.name = "tbgit"
spec.version = Tbgit::VERSION
spec.authors = ["Charlie Proctor"]
spec.email = ["charlie@charlieproctor.com"]
spec.summary = %q{TBGit is a command-line utility to facilitate the management of multiple GitHub student repositories.}
spec.description = %q{}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.files += Dir['lib/*.rb'] #add in any .rb files in lib
spec.executables = ["tbgit"]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "json"
spec.add_development_dependency "rubygems"
spec.add_development_dependency "highline/import"
spec.add_development_dependency "optparse"
end