2022-10-11 01:57:18 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
require_relative 'lib/bundler_checksum/version'
|
2022-10-11 01:57:18 +05:30
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'bundler-checksum'
|
2023-03-17 16:20:25 +05:30
|
|
|
spec.version = BundlerChecksum::VERSION
|
2022-10-11 01:57:18 +05:30
|
|
|
spec.authors = ['dustinmm80']
|
|
|
|
spec.email = ['dcollins@gitlab.com']
|
|
|
|
|
|
|
|
spec.summary = 'Track checksums locally with Bundler'
|
|
|
|
spec.description = 'Track checksums locally with Bundler'
|
|
|
|
spec.homepage = 'https://gitlab.com/gitlab-org/gitlab/-/tree/master/vendor/gems/bundler-checksum'
|
|
|
|
spec.license = 'MIT'
|
|
|
|
|
|
|
|
spec.files = Dir['bin/*', 'lib/**/*.rb']
|
|
|
|
spec.bindir = 'bin'
|
|
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
|
|
spec.require_paths = ['lib']
|
|
|
|
|
|
|
|
spec.add_dependency 'bundler'
|
|
|
|
end
|