Sha256: adb3a77c4eef7a347935f974e31e73c97a00acee8726456d822d5ff211925b11

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pacing/version'

Gem::Specification.new do |s|
  s.name          = 'pacing'
  s.version       = Pacing::VERSION
  s.summary       = "Pacing is a tool that enables therapists to better manage and track their caseload."
  s.description   = "Pacing is built for cases where there are therapy frequency limitations that need to be adhered to. For example, in the case of an [IEP (Individualized Education Program)](https://ambiki.com/glossary-concepts/iep), 504 plan, or a Service plan. This gem helps to calculate remaining visits as well as a therapist's current pace to meet visit mandates."
  s.authors       = ["Kevin S. Dias", "Samuel Okoth", "Lukong I. Nsoseka"]
  s.email         = 'info@ambiki.com'
  s.files         = `git ls-files -z`.split("\x0")
  s.homepage      = 'https://github.com/Ambiki/pacing'
  s.license       = 'MIT'
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ["lib"]

  s.add_development_dependency "rspec"
  s.add_runtime_dependency "holidays", '~> 8.6', '>= 8.6'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pacing-2.2.0 pacing.gemspec
pacing-2.1.0 pacing.gemspec
pacing-2.0.0 pacing.gemspec
pacing-1.0.1 pacing.gemspec