From c32868ce49cfa63903fa68917bec63053d7f452b Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 10 Dec 2018 22:04:09 -0800 Subject: Don't ship the rakefile or specs in the gem artifact No need for these in this gem. Signed-off-by: Tim Smith --- .travis.yml | 6 +++--- ffi-yajl.gemspec.shared | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 55b80b3..8218651 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,9 @@ bundler_args: --without development_extras --jobs 3 --retry 3 after_success: gem install yajl-ruby; gem install json; gem install psych; FORCE_FFI_YAJL="ext" ffi-yajl-bench matrix: include: - - rvm: 2.2.7 - - rvm: 2.3.4 - - rvm: 2.4.1 + - rvm: 2.2.10 + - rvm: 2.3.8 + - rvm: 2.4.5 - rvm: ruby-head - rvm: rbx - rvm: jruby diff --git a/ffi-yajl.gemspec.shared b/ffi-yajl.gemspec.shared index 5bce91b..5ebe2a9 100644 --- a/ffi-yajl.gemspec.shared +++ b/ffi-yajl.gemspec.shared @@ -24,6 +24,6 @@ Gem::Specification.new do |s| s.bindir = "bin" s.executables = %w{ ffi-yajl-bench } s.require_path = 'lib' - s.files = %w{ Rakefile LICENSE README.md } + - Dir.glob( "{lib,spec,ext}/**/*", File::FNM_DOTMATCH ).reject { |f| File.directory?(f) } + s.files = %w{ LICENSE } + + Dir.glob( "{bin,lib,ext}/**/*", File::FNM_DOTMATCH ).reject { |f| File.directory?(f) } end -- cgit v1.2.1