technicaldebt-techincaldebt 0.1.1 → 0.1.2
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.
- data/README.rdoc +18 -2
- data/VERSION +1 -1
- data/techincaldebt.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -1,6 +1,22 @@
|
|
1
1
|
= techincaldebt
|
2
2
|
|
3
|
-
|
3
|
+
This is a gem to submit your technical debt via git post commit hook to http://technicaldebt.r09.railsrumble.com
|
4
|
+
How can I do this? Well all you need to do is go to http://technicaldebt.r09.railsrumble.com/account and get your token then install it:
|
5
|
+
|
6
|
+
git config --global technicaldebt.token your_token_here
|
7
|
+
|
8
|
+
Then install the gem:
|
9
|
+
|
10
|
+
gem source --add http://gems.github.com
|
11
|
+
sudo gem install technicaldebt-technicaldebt
|
12
|
+
|
13
|
+
Then you have a spiffy git post commit hook that will submit your #DEBT comments,
|
14
|
+
|
15
|
+
#DEBT 3 hours - refactor the index action on movies_controller to be 8 lines or less
|
16
|
+
|
17
|
+
from your code to the application for tracking. But Git is distributed, I may be offline on a boat, train, plane, what then???
|
18
|
+
|
19
|
+
Well fear not!!! technicaldebt will log your debt messages and submit them next time you commit and you online.
|
4
20
|
|
5
21
|
== Note on Patches/Pull Requests
|
6
22
|
|
@@ -15,4 +31,4 @@ Description goes here.
|
|
15
31
|
|
16
32
|
== Copyright
|
17
33
|
|
18
|
-
Copyright (c) 2009
|
34
|
+
Copyright (c) 2009 Technical Debt. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/techincaldebt.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{techincaldebt}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Chris Herring", "Jeremy Grant", "Gareth Stokes", "Carl Woodward"]
|