-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhatsnew.gemspec
More file actions
26 lines (20 loc) · 842 Bytes
/
whatsnew.gemspec
File metadata and controls
26 lines (20 loc) · 842 Bytes
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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "whatsnew/version"
Gem::Specification.new do |spec|
spec.name = "whatsnew"
spec.version = Whatsnew::VERSION
spec.authors = ["Juanito Fatas"]
spec.email = ["katehuang0320@gmail.com"]
spec.summary = %q{Find out what's new about a project}
spec.description = spec.summary
spec.homepage = "https://github.com/jollygoodcode/whatsnew"
spec.license = "MIT"
spec.bindir = "bin"
spec.executables << "whatsnew"
spec.require_paths = ["lib"]
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.add_dependency "thor", [">= 0.19.1", "< 2"]
spec.add_dependency "octokit", [">= 4.1.1", "< 5"]
end