blob: 0f71d47af406a19f200bd320ed9855b1d6f11baa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- a/ffi.gemspec
+++ b/ffi.gemspec
@@ -8,19 +8,7 @@
s.homepage = 'http://wiki.github.com/ffi/ffi'
s.summary = 'Ruby FFI'
s.description = 'Ruby FFI library'
- s.files = `git ls-files -z`.split("\x0").reject do |f|
- f =~ /^(bench|gen|libtest|nbproject|spec)/
- end
-
- # Add libffi git files
- lfs = `git --git-dir ext/ffi_c/libffi/.git ls-files -z`.split("\x0")
- # Add autoconf generated files of libffi
- lfs += %w[ configure config.guess config.sub install-sh ltmain.sh missing fficonfig.h.in ]
- # Add automake generated files of libffi
- lfs += `git --git-dir ext/ffi_c/libffi/.git ls-files -z *.am */*.am`.gsub(".am\0", ".in\0").split("\x0")
- s.files += lfs.map do |f|
- File.join("ext/ffi_c/libffi", f)
- end
+ s.files = Dir['lib/**/*', 'ext/**/*']
s.extensions << 'ext/ffi_c/extconf.rb'
s.has_rdoc = false
|