public
Rubygem
Description: Git based distributed ticketing system, including a command line client and web viewer
Clone URL: git://github.com/schacon/ticgit.git
Search Repo:
Ignoring the generated gem file when using the "gem build" 
command

Also added the gem file to be removed in the clean task
pope (author)
Sun May 11 19:14:18 -0700 2008
commit  fa42c651fa6726bcbb67f1682e5c56ed9161bf40
tree    979954a85c9c465c071a2e736e9247c7ab0ed1a0
parent  2b5db39607a8532631a930693b11ab6f227b6ea3
...
1
2
3
 
...
1
2
3
4
0
@@ -1,4 +1,5 @@
0
 bin/*.log
0
 pkg
0
 coverage
0
+ticgit*gem
...
31
32
33
 
34
35
36
...
31
32
33
34
35
36
37
0
@@ -31,6 +31,7 @@
0
 task :clean do
0
   rm_rf 'coverage'
0
   rm_rf 'pkg'
0
+ rm Dir.glob('ticgit*gem')
0
 end
0
 
0
 task :default => "pkg/#{spec.name}-#{spec.version}.gem" do

Comments

    No one has commented yet.