forked from scalyr/scalyr-fluentd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed git dependency from gemspec file
- Loading branch information
Imron Alston
committed
Dec 15, 2017
1 parent
c9d50fb
commit 259dd38
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.0 | ||
0.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|