-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchbr.gemspec
More file actions
23 lines (20 loc) · 810 Bytes
/
chbr.gemspec
File metadata and controls
23 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'chbr'
spec.version = '0.2.2'
spec.executables << 'chbr'
spec.summary = 'Change branch tool'
spec.description = 'A simple CLI tool to change branches in a git repositoy. ' \
'You can also delete local branches.'
spec.authors = ['thestbar']
spec.email = 'stavrosbarousis@gmail.com'
spec.files = ['lib/chbr.rb']
spec.homepage = 'http://github.com/thestbar/chbr'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.add_dependency 'forwardable', '~> 1.3'
spec.add_dependency 'git', '~> 2.3'
spec.add_dependency 'optparse', '~> 0.4'
end