Move bin/jekyll to exe/jekyll to prevent collision with binstubs

This commit is contained in:
Parker Moore 2016-06-15 11:11:22 -07:00
parent ddf833505c
commit 5e343f620a
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
3 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
/vendor /vendor
Gemfile.lock Gemfile.lock
_site/ _site/
bin/
bbin/ bbin/
coverage coverage
gh-pages/ gh-pages/

View File

@ -21,8 +21,9 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/jekyll/jekyll' s.homepage = 'https://github.com/jekyll/jekyll'
all_files = `git ls-files -z`.split("\x0") all_files = `git ls-files -z`.split("\x0")
s.files = all_files.grep(%r{^(bin|lib)/|^.rubocop.yml$}) s.files = all_files.grep(%r{^(exe|lib)/|^.rubocop.yml$})
s.executables = all_files.grep(%r{^bin/}) { |f| File.basename(f) } s.executables = all_files.grep(%r{^exe/}) { |f| File.basename(f) }
s.bindir = "exe"
s.require_paths = ['lib'] s.require_paths = ['lib']
s.rdoc_options = ['--charset=UTF-8'] s.rdoc_options = ['--charset=UTF-8']