Sha256: 0f8adde29ba2fcb5639bac3a1acea2e235f633b616151a79e843b25a9c3b0edf

Contents?: true

Size: 824 Bytes

Versions: 2

Compression:

Stored size: 824 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"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jog-0.0.3 jog.gemspec
jog-0.0.2 jog.gemspec