Sha256: 4788706222c5e469f8208576f62adb1be3094d1bf17f5596a9ef5571f1bcd991

Contents?: true

Size: 1.34 KB

Versions: 12

Compression:

Stored size: 1.34 KB

Contents

require "bundler/setup"

<% if configuration.build_bundler_leak %>
  require "bundler/plumber/task"
<% end %>
<% if configuration.build_git && configuration.build_git_lint %>
  require "git/lint/rake/setup"
<% end %>
<% if configuration.build_reek %>
  require "reek/rake/task"
<% end %>
<% if configuration.build_rspec %>
  require "rspec/core/rake_task"
<% end %>
<% if configuration.build_caliber %>
  require "rubocop/rake_task"
<% end %>
<% if configuration.build_yard %>
  require "yard"
<% end %>

<% if configuration.build_bundler_leak %>
  Bundler::Plumber::Task.new
<% end %>
<% if configuration.build_reek %>
  Reek::Rake::Task.new
<% end %>
<% if configuration.build_rspec %>
  RSpec::Core::RakeTask.new :spec
<% end %>
<% if configuration.build_caliber %>
  RuboCop::RakeTask.new
<% end %>

<% if configuration.build_yard %>
  YARD::Rake::YardocTask.new do |task|
    task.options = ["--title", "<%= configuration.project_label %>", "--output-dir", "doc/yard"]
  end
<% end %>

desc "Run code quality checks"
task code_quality: %i[<% if configuration.build_bundler_leak %>bundle:leak<% end %> <% if configuration.build_git && configuration.build_git_lint %>git_lint<% end %> <% if configuration.build_reek %>reek<% end %> <% if configuration.build_caliber %>rubocop<% end %>]

task default: %i[code_quality <% if configuration.build_rspec %>spec<% end %>]

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rubysmith-3.7.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.6.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.5.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.4.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.3.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.2.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.1.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.0.1 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-3.0.0 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-2.0.2 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-2.0.1 lib/rubysmith/templates/%project_name%/Rakefile.erb
rubysmith-2.0.0 lib/rubysmith/templates/%project_name%/Rakefile.erb