grog 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/grog.gemspec +12 -3
  3. metadata +1 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.0
1
+ 0.0.1
data/grog.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{grog}
8
- s.version = ""
8
+ s.version = "0.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tom ten Thij"]
12
- s.date = %q{2009-11-01}
12
+ s.date = %q{2009-11-02}
13
13
  s.default_executable = %q{grog}
14
14
  s.description = %q{A wrapper script for git-log}
15
15
  s.email = %q{git@tomtenthij.nl}
@@ -24,12 +24,19 @@ Gem::Specification.new do |s|
24
24
  "LICENSE",
25
25
  "README.rdoc",
26
26
  "Rakefile",
27
+ "VERSION",
27
28
  "bin/grog",
28
29
  "features/grog.feature",
30
+ "features/step_definitions/common_steps.rb",
31
+ "features/step_definitions/git_steps.rb",
29
32
  "features/step_definitions/grog_steps.rb",
30
33
  "features/support/env.rb",
31
34
  "grog.gemspec",
32
35
  "lib/grog.rb",
36
+ "lib/grog/git_log.rb",
37
+ "lib/grog/options.rb",
38
+ "spec/grog/git_log_spec.rb",
39
+ "spec/grog/options_spec.rb",
33
40
  "spec/grog_spec.rb",
34
41
  "spec/spec.opts",
35
42
  "spec/spec_helper.rb"
@@ -40,7 +47,9 @@ Gem::Specification.new do |s|
40
47
  s.rubygems_version = %q{1.3.5}
41
48
  s.summary = %q{A wrapper script for git-log - shows subject, time and author of each commit plus branches and tags}
42
49
  s.test_files = [
43
- "spec/grog_spec.rb",
50
+ "spec/grog/git_log_spec.rb",
51
+ "spec/grog/options_spec.rb",
52
+ "spec/grog_spec.rb",
44
53
  "spec/spec_helper.rb"
45
54
  ]
46
55
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom ten Thij