Sha256: 2f450aedfd9bfdb7780759044fc744870c570cd540377eb9a8a64f09f9e76ec3

Contents?: true

Size: 1.48 KB

Versions: 3

Compression:

Stored size: 1.48 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_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

3 entries across 3 versions & 1 rubygems

Version Path
time_cop-0.4.0 time_cop.gemspec
time_cop-0.2.0 time_cop.gemspec
time_cop-0.1.0 time_cop.gemspec