Sha256: 8488ed76951c4350fe12df4926cd78c170b3a9e92a4cea258c83d2cafd4710c8
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'gitwakatime/version' Gem::Specification.new do |spec| spec.name = 'gitwakatime' spec.version = GitWakaTime::VERSION spec.authors = ['Russell Osborne'] spec.email = ['russosborn@gmail.com'] spec.summary = 'A Tool that will compile git data with wakatime data to establish time per commit' spec.description = 'A Tool that will compile git data with wakatime data to establish time per commit ' spec.homepage = '' 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_runtime_dependency 'git', '>= 1.2.9.1' spec.add_runtime_dependency 'wakatime', '>= 0.0.2' spec.add_runtime_dependency 'logger', '>= 0' spec.add_runtime_dependency 'thor', '>= 0' spec.add_runtime_dependency 'chronic_duration', '>=0' spec.add_runtime_dependency 'colorize' spec.add_runtime_dependency 'activesupport' spec.add_development_dependency('bundler', ['>= 0']) spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency('webmock', ['>= 0']) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gitwakatime-0.0.3 | gitwakatime.gemspec |