-
Notifications
You must be signed in to change notification settings - Fork 0
/
lolcommits-dotcom.gemspec
45 lines (38 loc) · 1.76 KB
/
lolcommits-dotcom.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
33
34
35
36
37
38
39
40
41
42
43
44
45
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lolcommits/dotcom/version'
Gem::Specification.new do |spec|
spec.name = "lolcommits-dotcom"
spec.version = Lolcommits::Dotcom::VERSION
spec.authors = [ "Matthew Hutchinson" ]
spec.email = [ "[email protected]" ]
spec.summary = %q(Uploads lolcommits to a remote server)
spec.homepage = "https://github.com/lolcommits/lolcommits-dotcom"
spec.license = "LGPL-3.0"
spec.description = <<-DESC
Uploads lolcommits to a remote server, with optional key or HTTP based
authentication.
DESC
spec.metadata = {
"homepage_uri" => "https://github.com/lolcommits/lolcommits-dotcom",
"documentation_uri" => "https://rubydoc.info/gems/lolcommits-dotcom",
"changelog_uri" => "https://github.com/lolcommits/lolcommits-dotcom/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/lolcommits/lolcommits-dotcom",
"bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-dotcom/issues",
"allowed_push_host" => "https://rubygems.org"
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(assets|test|features)/}) }
spec.test_files = `git ls-files -- {test,features}/*`.split("\n")
spec.bindir = "bin"
spec.executables = []
spec.require_paths = [ "lib" ]
spec.required_ruby_version = ">= 3.1"
spec.add_runtime_dependency "rest-client", ">= 2.1.0"
spec.add_runtime_dependency "lolcommits", ">= 0.17.2"
spec.add_development_dependency "bundler"
spec.add_development_dependency "webmock"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
spec.add_development_dependency "simplecov"
end