Sha256: 410a42337f38a24d89b2bcacd02c86848f2b5fdde759fb6bb88040baff61f048
Contents?: true
Size: 857 Bytes
Versions: 2
Compression:
Stored size: 857 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'stop_watch/version' Gem::Specification.new do |spec| spec.name = "stop_watch" spec.version = StopWatch::VERSION spec.authors = ["Daniel P. Clark"] spec.email = ["6ftdan@gmail.com"] spec.summary = 'Stop watch timer for Ruby' spec.description = 'Stop watch timer for Ruby.' spec.homepage = "https://github.com/danielpclark/stop_watch" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stop_watch-1.0.0 | stop_watch.gemspec |
stop_watch-0.1.0 | stop_watch.gemspec |