-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcode-extractor.gemspec
30 lines (26 loc) · 1023 Bytes
/
code-extractor.gemspec
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
29
30
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "code_extractor/version"
Gem::Specification.new do |spec|
spec.name = "code-extractor"
spec.version = CodeExtractor::VERSION
spec.authors = ["Julian Cheal"]
spec.summary = "Extracts code from from one repository to another preserving history"
spec.description = "Extracts code from from one repository to another preserving history"
spec.homepage = "https://github.com/juliancheal/code-extractor"
spec.license = "MIT"
spec.files = %w[
bin/code-extractor
lib/code_extractor.rb
lib/code_extractor/version.rb
code-extractor.gemspec
LICENSE
README.md
]
spec.bindir = "bin"
spec.executables = ["code-extractor"]
spec.require_paths = ["lib"]
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rugged", "~> 0.28"
end