Sha256: 837248ad2678752982888c00cbdd1b47b54977929a3c0475bbef4e90c84f416d

Contents?: true

Size: 1.14 KB

Versions: 11

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

require "rdoc/task"

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.title    = "MrCommon"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.md")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
load "rails/tasks/engine.rake"

load "rails/tasks/statistics.rake"

require "bundler/gem_tasks"


require "rspec/core"
require "rspec/core/rake_task"

desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(spec: "app:db:test:prepare")

task default: :spec

desc "Run rubocop linter"
task "lint" do
  Bundler.with_clean_env do
    exec "bin/rubocop"
  end
end

desc "Run rubocop linter"
task "lint:fix" do
  Bundler.with_clean_env do
    exec "bin/rubocop -a"
  end
end

desc "Reformat CSS"
task "comb" do
  Bundler.with_clean_env do
    exec "yarn comb"
  end
end

desc "run dev env"
task "run" do
  Bundler.with_clean_env do
    exec "foreman start -f Procfile.dev"
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mr_common-2.1.0 Rakefile
mr_common-2.0.0 Rakefile
mr_common-1.3.0 Rakefile
mr_common-1.2.0 Rakefile
mr_common-1.1.0 Rakefile
mr_common-1.0.5 Rakefile
mr_common-1.0.4 Rakefile
mr_common-1.0.3 Rakefile
mr_common-1.0.2 Rakefile
mr_common-1.0.1 Rakefile
mr_common-1.0.0 Rakefile