summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-12-10 22:04:09 -0800
committerTim Smith <tsmith@chef.io>2018-12-10 22:04:09 -0800
commitc32868ce49cfa63903fa68917bec63053d7f452b (patch)
tree1afd509d1dfc2d36a9a53450bfcb2792ce67146f
parent78224b8aa58006bd941c8c49f187885ea09d6144 (diff)
downloadffi-yajl-c32868ce49cfa63903fa68917bec63053d7f452b.tar.gz
Don't ship the rakefile or specs in the gem artifactmore_cleanup
No need for these in this gem. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.travis.yml6
-rw-r--r--ffi-yajl.gemspec.shared4
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