-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecbb875
commit 27db1a2
Showing
2 changed files
with
2 additions
and
25 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,27 +1,7 @@ | ||
require 'rake' | ||
require 'rake/testtask' | ||
require 'rake/clean' | ||
|
||
begin | ||
require 'jeweler' | ||
Jeweler::Tasks.new do |gemspec| | ||
gemspec.name = "fluent-plugin-sqs" | ||
gemspec.summary = "Amazon SQS input/output plugin for Fluent event collector" | ||
gemspec.author = "Yuri Odagiri" | ||
gemspec.email = "[email protected]" | ||
gemspec.homepage = "https://github.com/ixixi/fluent-plugin-sqs" | ||
gemspec.has_rdoc = false | ||
gemspec.require_paths = ["lib"] | ||
gemspec.add_dependency "fluentd", "~> 0.10.0" | ||
gemspec.add_dependency "aws-sdk", "~> 1.3.2" | ||
gemspec.test_files = Dir["test/**/*.rb", "spec/**/*.rb"] | ||
gemspec.files = Dir["lib/**/*", "test/**/*.rb", "spec/**/*.rb"] + %w[VERSION AUTHORS Rakefile] | ||
gemspec.executables = [] | ||
end | ||
Jeweler::GemcutterTasks.new | ||
rescue LoadError | ||
puts "Jeweler not available. Install it with: gem install jeweler" | ||
end | ||
require "bundler/gem_tasks" | ||
|
||
Rake::TestTask.new(:test) do |t| | ||
t.test_files = Dir['test/*_test.rb'] | ||
|
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