Sha256: 14046ffc94b260cfd2a1d276e790bf110609ed16929ef268bce9f6503974c9cf
Contents?: true
Size: 1.35 KB
Versions: 11
Compression:
Stored size: 1.35 KB
Contents
# # Author:: John McCrae (<john.mccrae@progress.com>) # Copyright:: Copyright, Chef Software Inc. # Copyright:: Copyright, Progress Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # begin require_relative "tasks/rspec" require_relative "tasks/dependencies" require_relative "tasks/spellcheck" require "rubocop/rake_task" require "rspec/core/rake_task" require "rubygems" require "rake" require "chefstyle" rescue LoadError => e puts "Skipping missing rake dep: #{e}" end desc "Chefstyle Linting and format checking" task :chefstyle do sh("bundle exec chefstyle") end task all: %w{chefstyle spellcheck spec update_chef_powershell_dlls gem_build}.freeze task gem: %w{chefstyle spellcheck spec:doc gem_build}.freeze task gem_check: %w{chefstyle spellcheck spec}.freeze
Version data entries
11 entries across 11 versions & 1 rubygems