Sha256: 6b00a297d0e853c579f76c53ab77a31217db69d69be6b5851352767ddebc2fb4
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true require_relative 'lib/git_ls/version' Gem::Specification.new do |spec| spec.name = 'git_ls' spec.version = GitLS::VERSION spec.authors = ['Dana Sherson'] spec.email = ['robot@dana.sh'] spec.summary = 'Read a .git/index file and list the files' spec.homepage = 'https://github.com/robotdana/git_ls' spec.license = 'MIT' spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0') if spec.respond_to?(:metadata) spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = spec.homepage spec.metadata['changelog_uri'] = spec.homepage + '/blob/main/CHANGELOG.md' end # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|test|spec|features)/}) } end spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '>= 2' spec.add_development_dependency 'pry', '> 0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
git_ls-0.1.0 | git_index.gemspec |