Skip to content

Commit 6b03c0c

Browse files
committed
Ignore and clean .rbc
1 parent 0b70f2e commit 6b03c0c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.o
33
*.bundle
44
*.so
5+
*.rbc
56
mkmf.log
67
conftest.dSYM
78
lib/*.jar

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ NAME = "hpricot"
1414
REV = (`#{ENV['GIT'] || "git"} rev-list HEAD`.split.length + 1).to_s
1515
VERS = ENV['VERSION'] || "0.8" + (REV ? ".#{REV}" : "")
1616
PKG = "#{NAME}-#{VERS}"
17-
BIN = "*.{bundle,jar,so,o,obj,pdb,lib,def,exp,class}"
18-
CLEAN.include ["ext/hpricot_scan/#{BIN}", "ext/fast_xs/#{BIN}", "lib/**/#{BIN}",
17+
BIN = "*.{bundle,jar,so,o,obj,pdb,lib,def,exp,class,rbc}"
18+
CLEAN.include ["#{BIN}", "ext/**/#{BIN}", "lib/**/#{BIN}", "test/**/#{BIN}",
1919
'ext/fast_xs/Makefile', 'ext/hpricot_scan/Makefile',
2020
'**/.*.sw?', '*.gem', '.config', 'pkg', 'lib/hpricot_scan.rb', 'lib/fast_xs.rb']
2121
RDOC_OPTS = ['--quiet', '--title', 'The Hpricot Reference', '--main', 'README.md', '--inline-source']

0 commit comments

Comments
 (0)