-
Notifications
You must be signed in to change notification settings - Fork 31
/
tachikoma.gemspec
31 lines (27 loc) · 1.24 KB
/
tachikoma.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
31
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tachikoma/version'
Gem::Specification.new do |spec|
spec.name = 'tachikoma'
spec.version = Tachikoma::VERSION
spec.authors = ['sanemat']
spec.email = ['[email protected]']
spec.description = 'Interval pull requester with bundler/carton/david/cocoapods/composer/none update.'
spec.summary = "Update gem frequently gets less pain. Let's doing bundle update as a habit!"
spec.homepage = 'https://github.com/sanemat/tachikoma'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.0'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
spec.require_paths = ['lib']
spec.add_dependency 'safe_yaml'
spec.add_dependency 'rake'
spec.add_dependency 'octokit', '>= 3.2', '< 5.0'
spec.add_dependency 'thor'
spec.add_dependency 'restore_bundled_with'
spec.add_development_dependency 'bundler', '>= 1.3', '< 2.0'
spec.add_development_dependency 'dotenv'
spec.add_development_dependency 'rspec', '>= 3.0.0'
end