summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2009-10-21 12:38:25 +0200
committerFlorian Frank <flori@ping.de>2009-10-21 12:43:10 +0200
commitf599e6609b42e15d8514332eeca4c31fda1c09c5 (patch)
treedec000c6ac8976d59b748ff2c29adfcfb6915de7
parentf5ff4bdc724a85516e50d6439bfd08ed71608953 (diff)
downloadjson-f599e6609b42e15d8514332eeca4c31fda1c09c5.tar.gz
ignore .nfs.* files
-rw-r--r--.gitignore1
-rw-r--r--Rakefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 343a4f0..4b2dce5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
.*.sw[pon]
coverage
pkg
+.nfs.*
diff --git a/Rakefile b/Rakefile
index 6667caa..e2f950c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -18,7 +18,7 @@ include Config
MAKE = ENV['MAKE'] || %w[gmake make].find { |c| system(c, '-v') }
PKG_NAME = 'json'
PKG_VERSION = File.read('VERSION').chomp
-PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile/).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/)
+PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile|\.nfs\./).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/)
EXT_ROOT_DIR = 'ext/json/ext'
EXT_PARSER_DIR = "#{EXT_ROOT_DIR}/parser"
EXT_PARSER_DL = "#{EXT_ROOT_DIR}/parser.#{CONFIG['DLEXT']}"