-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgithub-copywriter.gemspec
30 lines (25 loc) · 1.27 KB
/
github-copywriter.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
# encoding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "github-copywriter/version"
Gem::Specification.new do |gem|
gem.name = "github-copywriter"
gem.version = Copywriter::VERSION
gem.authors = ["Ryan Jacobs"]
gem.email = ["[email protected]"]
gem.summary = %q{github-copywriter updates your copyrights... so you don't have to!}
gem.description = %q{github-copywriter scans through your repositories and updates any copyrights it finds.}
gem.homepage = "http://ryanmjacobs.github.io/github-copywriter"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0") - %w(test_repo_demo.gif)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.1.8"
gem.add_development_dependency "bundler", "~> 1.6"
gem.add_development_dependency "rake", "~> 10.0"
gem.add_development_dependency "rspec", "~> 3.1"
gem.add_runtime_dependency "octokit", "~> 3.7"
gem.add_runtime_dependency "colorize", "~> 0.7"
gem.add_runtime_dependency "highline", "~> 1.6"
end