Sha256: d160b2ede9016fb8d45fa97c85ac20d41847e165b65426b7c7dab0293bfa3e15

Contents?: true

Size: 513 Bytes

Versions: 7

Compression:

Stored size: 513 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

desc 'Runs all the specs'
RSpec::Core::RakeTask.new(:spec) do |task|
  task.pattern = './spec/**/*_spec.rb'
  task.rspec_opts = ['--color']
end

desc 'Runs the specs for metrics 0.8.0.Final'
RSpec::Core::RakeTask.new(:'old-metrics') do |task|
  task.pattern = './spec/integration/metric_spec.rb'
  task.rspec_opts = ['--color']
  ENV['SKIP_SERVICES_METRICS'] = '1'
end

RuboCop::RakeTask.new

task default: [:rubocop, :spec]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hawkular-client-2.9.0 Rakefile
hawkular-client-2.8.0 Rakefile
hawkular-client-2.7.0 Rakefile
hawkular-client-2.6.0 Rakefile
hawkular-client-2.5.0 Rakefile
hawkular-client-2.4.0 Rakefile
hawkular-client-2.3.0 Rakefile