Sha256: 11f8a24577c0a810dac8c3041ad120b6b45dde5fab2a5f2cef1da64607111af6
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true require_relative "lib/elf_ham/version" Gem::Specification.new do |spec| spec.name = "elf_ham" spec.version = ElfHam::VERSION spec.authors = ["Jared Norman"] spec.email = ["jared@super.gd"] spec.summary = "A simple helper for writing scripts to transform CSV files" spec.description = "A simple helper for writing scripts to transform CSV files" spec.homepage = "https://github.com/jarednorman/elf_ham" spec.license = "MIT" spec.required_ruby_version = ">= 2.4.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = "https://github.com/jarednorman/elf_ham/blob/main/CHANGELOG.md" # 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{\A(?:test|spec|features)/}) } end spec.executables = [] spec.require_paths = ["lib"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
elf_ham-1.0.0 | elf_ham.gemspec |
elf_ham-0.2.0 | elf_ham.gemspec |
elf_ham-0.1.0 | elf_ham.gemspec |