Sha256: c27e4b975d103fe698476da39a73216fb626fdfeeec1e73781ebbbda5ee1feab
Contents?: true
Size: 554 Bytes
Versions: 2
Compression:
Stored size: 554 Bytes
Contents
require 'bundler' require 'rake' require 'polishgeeks-dev-tools' desc 'Self check using command maintained in this gem' task :check do PolishGeeks::DevTools.setup do |config| config.brakeman = false config.haml_lint = false config.expires_in_files_ignored = %w( lib/polishgeeks/dev-tools/command/expires_in.rb ) config.empty_method_ignored = %w( empty_method_spec.rb file_parser_spec.rb ) end PolishGeeks::DevTools::Runner.new.execute( PolishGeeks::DevTools::Logger.new ) end task default: :check
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
polishgeeks-dev-tools-1.2.0 | Rakefile |
polishgeeks-dev-tools-1.1.3 | Rakefile |