Sha256: 42b62b80309de901e20e43072c1a226656c544203f9f53a957cf00d13fc9e5f9
Contents?: true
Size: 861 Bytes
Versions: 3
Compression:
Stored size: 861 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "jog/version" Gem::Specification.new do |s| s.name = "jog" s.version = Jog::VERSION s.authors = ["Tyson Tate"] s.email = ["tyson@tysontate.com"] s.homepage = "http://github.com/tysontate/jog" s.summary = "Command-line tool that makes it easy to log your work." s.description = "Jog is a simple command-line tool that simplifies the process of logging what you've worked on, storing plain-text files in a sensible file structue." s.rubyforge_project = "jog" s.files = `git ls-files`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency "thor" s.add_runtime_dependency "activesupport" s.add_runtime_dependency "colored" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jog-0.0.6 | jog.gemspec |
jog-0.0.5 | jog.gemspec |
jog-0.0.4 | jog.gemspec |