Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / bundle / jruby / 1.9 / gems / bindata-2.0.0 / Rakefile

require 'bundler'
Bundler.setup
Bundler::GemHelper.install_tasks

require 'rake/clean'
require 'rake/testtask'

task :clobber do
  rm_rf 'pkg'
end

Rake::TestTask.new do |t|
    t.pattern = "test/**/*_test.rb"
end

task :default => :test