Sha256: 9e9aad02ad4cc5c633fc1f5757003340e7190c3b3e261903517151cef3d8b1be
Contents?: true
Size: 462 Bytes
Versions: 4
Compression:
Stored size: 462 Bytes
Contents
require "bundler/gem_tasks" begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end require 'rubocop/rake_task' RuboCop::RakeTask.new(:rubocop) task default: %i[spec rubocop]
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
datadog-notifications-0.5.4 | Rakefile |
datadog-notifications-0.5.3 | Rakefile |
datadog-notifications-0.5.2 | Rakefile |
datadog-notifications-0.5.1 | Rakefile |