Sha256: 6d091879296e2023af990fafd74e13b5a94a3f98b685a2ab596f7ad867bb64a4
Contents?: true
Size: 966 Bytes
Versions: 1
Compression:
Stored size: 966 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', '~> 12.3.2' spec.add_development_dependency 'rspec', '~> 3.8.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
percentify-0.1.0 | percentify.gemspec |