forked from 177shivam/dependabot-for-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependabot-core.gemspec
26 lines (22 loc) · 1.25 KB
/
dependabot-core.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
# frozen_string_literal: true
# This is a placeholder gem to prevent namesquatting on https://rubygems.org/gems/dependabot-core
# Any updates must be manually published to RubyGems.
# It's excluded from the normal release process because it's not expected to change.
Gem::Specification.new do |spec|
spec.name = "dependabot-core"
spec.summary = "This is a placeholder gem to prevent namesquatting. " \
"You probably want the gem 'dependabot-omnibus'."
spec.description = "This is a placeholder gem to prevent namesquatting. " \
"You probably want the gem 'dependabot-omnibus'."
spec.authors = "Dependabot"
spec.email = "[email protected]"
spec.files = [] # intentionally empty, this is a placeholder gem to prevent namesquatting
spec.homepage = "https://github.com/dependabot/dependabot-core"
spec.license = "Nonstandard" # License Zero Prosperity Public License
spec.metadata = {
"bug_tracker_uri" => "https://github.com/dependabot/dependabot-core/issues"
}
spec.version = "0.95.1"
# Since a placeholder gem, no need to keep `required_ruby_version` up to date with `.ruby-version`
spec.required_ruby_version = ">= 3" # rubocop:disable Gemspec/RequiredRubyVersion
end