Sha256: ca05ba51f368758f31c147c8d6ebb04ad4d3b3eadfc7c8d458cfc681db16bdde
Contents?: true
Size: 834 Bytes
Versions: 1
Compression:
Stored size: 834 Bytes
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "upc_tools/version" Gem::Specification.new do |spec| spec.name = "upc_tools" spec.version = UpcTools::VERSION spec.authors = ["Justin Hart", "Ibotta, Inc."] spec.email = ["jhart@ibotta.com"] spec.summary = "UPC validation and creation utilities" spec.description = "create, validate, convert UPCs" spec.homepage = "https://github.com/Ibotta/ruby_upc_tools" spec.licenses = ["Apache-2.0"] spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
upc_tools-0.2.1 | upc_tools.gemspec |