-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjieba_rb.gemspec
51 lines (45 loc) · 1.9 KB
/
jieba_rb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jieba_rb/version'
Gem::Specification.new do |spec|
spec.name = "jieba_rb"
spec.version = JiebaRb::VERSION
spec.authors = ["Chris Li"]
spec.email = ["[email protected]"]
spec.summary = "cppjieba binding for ruby"
spec.description = "cppjieba binding for ruby"
spec.homepage = "https://github.com/altkatz/jieba_rb"
spec.required_ruby_version = ">=1.9.2"
spec.license = "MIT"
spec.extensions = ["ext/jieba/extconf.rb"]
spec.files = `git ls-files -z`.split("\x0")
relative_path = File.expand_path("../", __FILE__) + '/'
`git submodule --quiet foreach pwd`.split($\).each do |submodule_path|
if (ENV['OS'] == 'Windows_NT') && submodule_path[0] == '/'
# Detect if cygwin path is being used by git
submodule_path = submodule_path[1..-1]
submodule_path.insert(1, ':')
end
# for each submodule, change working directory to that submodule
Dir.chdir(submodule_path) do
# Make the submodule path relative
submodule_path = submodule_path.gsub(/#{relative_path}/i, '')
# issue git ls-files in submodule's directory
submodule_files = `git ls-files`.split($\)
# prepend the submodule path to create relative file paths
submodule_files_paths = submodule_files.map do |filename|
File.join(submodule_path, filename)
end
# add relative paths to gem.files
spec.files += submodule_files_paths
end
end
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rake-compiler"
spec.add_development_dependency "minitest"
end