Sha256: 478f3b23fcf9c7fddb0839592724c3ee5a098cba53ddf3c5039a2757a4794059

Contents?: true

Size: 475 Bytes

Versions: 13

Compression:

Stored size: 475 Bytes

Contents

#!/usr/bin/env rake

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rake/testtask'
require 'rubocop/rake_task'

desc 'Run Rubocop to check for style violations'
RuboCop::RakeTask.new

desc 'Run unit tests'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.test_files = FileList['test/plugin/*.rb']
  test.verbose = true
end

desc 'Run unit tests and RuboCop to check for style violations'
task all: [:test, :rubocop]

task default: :all

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fluent-plugin-google-cloud-0.4.17 Rakefile
fluent-plugin-google-cloud-0.4.16 Rakefile
fluent-plugin-google-cloud-0.4.15 Rakefile
fluent-plugin-google-cloud-0.4.14 Rakefile
fluent-plugin-google-cloud-0.4.13 Rakefile
fluent-plugin-google-cloud-0.4.12 Rakefile
fluent-plugin-google-cloud-0.4.11 Rakefile
fluent-plugin-google-cloud-0.4.10 Rakefile
fluent-plugin-google-cloud-0.4.9 Rakefile
fluent-plugin-google-cloud-0.4.8 Rakefile
fluent-plugin-google-cloud-0.4.7 Rakefile
fluent-plugin-google-cloud-0.4.6 Rakefile
fluent-plugin-google-cloud-0.4.5 Rakefile