Sha256: b01da689731b47bc7f9096f33246be0df0f8d99d67a118ff667123d9f82ef7aa
Contents?: true
Size: 1012 Bytes
Versions: 1
Compression:
Stored size: 1012 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'percentify/version' Gem::Specification.new do |spec| spec.name = 'percentify' spec.version = Percentify::VERSION spec.authors = ['Colin Frame'] spec.email = ['colin@colinframe.com'] spec.summary = 'Lightweight Gem to aid the calculation of percentages in Ruby' spec.description = spec.summary spec.homepage = 'https://github.com/cframe/percentify' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 2.0.1' spec.add_development_dependency 'rake', '~> 13.0.1' spec.add_development_dependency 'rspec', '~> 3.8.0' spec.add_development_dependency 'coveralls' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
percentify-0.1.1 | percentify.gemspec |