Skip to content

Commit

Permalink
removed git dependency from gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
Imron Alston committed Dec 15, 2017
1 parent c9d50fb commit 259dd38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.8.1
6 changes: 3 additions & 3 deletions fluent-plugin-scalyr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Gem::Specification.new do |gem|
gem.email = "[email protected]"
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"
Expand Down

0 comments on commit 259dd38

Please sign in to comment.