Sha256: 9a86227d6b121da7ace50ca1b2c9d75d2bcbae6e0ca5d9eaf68c6c8dd500ae6a

Contents?: true

Size: 1.63 KB

Versions: 1

Compression:

Stored size: 1.63 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'time_cop/version'

Gem::Specification.new do |spec|
  spec.name          = "time_cop"
  spec.version       = TimeCop::VERSION
  spec.authors       = ["Sam Clopton"]
  spec.email         = ["samsinite@gmail.com"]

  spec.summary       = %q{Wildland Time Accountability App}
  spec.description   = %q{Helps Wildland employees know how much time they have tracked, what their target hours are, and more.}
  spec.homepage      = "https://github.com/wildland/time_cop"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    #spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "harvested", "~> 3.1.1"
  spec.add_runtime_dependency "highline", "~> 1.7.8"
  spec.add_runtime_dependency 'activesupport', '~> 5.0'
  spec.add_runtime_dependency 'paint', '~> 2.0.1'

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "pry"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
time_cop-0.8.0 time_cop.gemspec