Sha256: f452fef3127c94255f4596cc44276bc2c7bc0faccab8df779b67f6b393629d61
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 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_runtime_dependency 'sequel' spec.add_runtime_dependency 'sqlite3' 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gitwakatime-0.1.2 | gitwakatime.gemspec |
gitwakatime-0.1.1 | gitwakatime.gemspec |
gitwakatime-0.1.0 | gitwakatime.gemspec |