From 259dd389ad017ec28e8f929f4cc805e9d4a640b3 Mon Sep 17 00:00:00 2001 From: Imron Alston Date: Fri, 1 Dec 2017 16:34:34 +0000 Subject: [PATCH] removed git dependency from gemspec file --- VERSION | 2 +- fluent-plugin-scalyr.gemspec | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index a3df0a6..6f4eebd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 +0.8.1 diff --git a/fluent-plugin-scalyr.gemspec b/fluent-plugin-scalyr.gemspec index 6136c5a..c09567c 100644 --- a/fluent-plugin-scalyr.gemspec +++ b/fluent-plugin-scalyr.gemspec @@ -11,9 +11,9 @@ Gem::Specification.new do |gem| gem.email = "imron@scalyr.com" gem.has_rdoc = false gem.platform = Gem::Platform::RUBY - gem.files = `git ls-files`.split("\n") - gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") - gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + gem.files = Dir['AUTHORS', 'Gemfile', 'LICENSE', 'README.md', 'Rakefile', 'VERSION', 'fluent-plugin-scalyr.gemspec', 'fluent.conf.sample', 'lib/**/*', 'test/**/*'] + gem.test_files = Dir.glob("{test,spec,features}/**/*") + gem.executables = Dir.glob("bin/*").map{ |f| File.basename(f) } gem.require_paths = ['lib'] gem.add_dependency "fluentd", [">= 0.14.0", "< 2"] gem.add_development_dependency "rake", "~> 0.9"