Sha256: 5049bb4cc8ec50867421d17244b0350e67d50c263032272d29bc11ae9737a8db
Contents?: true
Size: 683 Bytes
Versions: 2
Compression:
Stored size: 683 Bytes
Contents
# frozen_string_literal: true # Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end Bundler::GemHelper.install_tasks Dir.glob('tasks/*.rake').each { |r| import r } require 'rspec/core/rake_task' require 'rubocop/rake_task' RSpec::Core::RakeTask.new(:spec) desc "Run style checker" RuboCop::RakeTask.new(:rubocop) do |task| task.fail_on_error = true end desc "Run continuous integration tests" task ci: %i[rubocop spec] task default: :ci
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ldap_disambiguate-0.0.5 | Rakefile |
ldap_disambiguate-0.0.4 | Rakefile |