Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bundler-checksum.gemspec « bundler-checksum « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c04312480b6411dce6088dcd25f4a1bb12de0a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require_relative 'lib/bundler/checksum/version'

Gem::Specification.new do |spec|
  spec.name          = 'bundler-checksum'
  spec.version       = Bundler::Checksum::VERSION
  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