We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ff4bd commit f599e66Copy full SHA for f599e66
2 files changed
.gitignore
@@ -1,3 +1,4 @@
1
.*.sw[pon]
2
coverage
3
pkg
4
+.nfs.*
Rakefile
@@ -18,7 +18,7 @@ include Config
18
MAKE = ENV['MAKE'] || %w[gmake make].find { |c| system(c, '-v') }
19
PKG_NAME = 'json'
20
PKG_VERSION = File.read('VERSION').chomp
21
-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']})$/)
22
EXT_ROOT_DIR = 'ext/json/ext'
23
EXT_PARSER_DIR = "#{EXT_ROOT_DIR}/parser"
24
EXT_PARSER_DL = "#{EXT_ROOT_DIR}/parser.#{CONFIG['DLEXT']}"
0 commit comments