git_pm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "GitPm" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1,9 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'git_pm'
4
+ require 'spec'
5
+ require 'spec/autorun'
6
+
7
+ Spec::Runner.configure do |config|
8
+
9
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: git_pm
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - David A. Cuadrado
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-09-22 00:00:00 -05:00
19
+ default_executable: git_pm
20
+ dependencies: []
21
+
22
+ description: set of git related tools
23
+ email: krawek@gmail.com
24
+ executables:
25
+ - git_pm
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - LICENSE
30
+ - README.rdoc
31
+ files:
32
+ - .document
33
+ - .gitignore
34
+ - LICENSE
35
+ - README.rdoc
36
+ - Rakefile
37
+ - VERSION
38
+ - bin/git_pm
39
+ - lib/SVG/Graph/Bar.rb
40
+ - lib/SVG/Graph/BarBase.rb
41
+ - lib/SVG/Graph/BarHorizontal.rb
42
+ - lib/SVG/Graph/Graph.rb
43
+ - lib/SVG/Graph/Line.rb
44
+ - lib/SVG/Graph/Pie.rb
45
+ - lib/SVG/Graph/Plot.rb
46
+ - lib/SVG/Graph/Schedule.rb
47
+ - lib/SVG/Graph/TimeSeries.rb
48
+ - lib/git_pm.rb
49
+ - lib/git_pm/commits_by_dev.rb
50
+ - lib/git_pm/commits_per_month.rb
51
+ - lib/git_pm/dir_lines_by_author.rb
52
+ - lib/git_pm/git.rb
53
+ - lib/git_pm/git_data.rb
54
+ - lib/git_pm/lines_by_author.rb
55
+ - spec/git_pm_spec.rb
56
+ - spec/spec.opts
57
+ - spec/spec_helper.rb
58
+ has_rdoc: true
59
+ homepage: http://github.com/dcu/git_pm
60
+ licenses: []
61
+
62
+ post_install_message:
63
+ rdoc_options:
64
+ - --charset=UTF-8
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ hash: 3
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ hash: 3
82
+ segments:
83
+ - 0
84
+ version: "0"
85
+ requirements: []
86
+
87
+ rubyforge_project:
88
+ rubygems_version: 1.3.7
89
+ signing_key:
90
+ specification_version: 3
91
+ summary: set of git related tools
92
+ test_files:
93
+ - spec/git_pm_spec.rb
94
+ - spec/spec_helper.rb