-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepomate.gemspec
32 lines (26 loc) · 1.04 KB
/
repomate.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
32
# repomate.gemspec
require_relative 'lib/repomate/version'
Gem::Specification.new do |spec|
spec.name = "repomate"
spec.version = Repomate::VERSION
spec.authors = ["Alex Quiterio"]
spec.email = ["your.email@example.com"]
spec.summary = "A tool to manage and synchronize multiple git repositories"
spec.description = "Repomate helps you maintain a list of git repositories and keep them up to date with their remote sources"
spec.homepage = "https://github.com/yourusername/repomate"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md"
}
spec.files = Dir.glob("{bin,lib,shell}/**/*") + %w[LICENSE README.md]
spec.bindir = "bin"
spec.executables = ["repomate"]
spec.require_paths = ["lib"]
spec.add_dependency "optparse"
spec.add_dependency "fileutils"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rake", "~> 13.0"
end