Sha256: 1c577a690a0e59bb9f3e3976a120e2307bdeb17cbf142d14939b00a9723b96a0
Contents?: true
Size: 392 Bytes
Versions: 6
Compression:
Stored size: 392 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' desc 'Run specs' RSpec::Core::RakeTask.new desc 'Run lint' RuboCop::RakeTask.new namespace 'doc' do desc 'Generate README and preview in browser' task 'readme' do sh 'markdown README.md > README.html && open README.html' end end task default: %i[spec rubocop]
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
with_model-2.1.5 | Rakefile |
with_model-2.1.4 | Rakefile |
with_model-2.1.3 | Rakefile |
with_model-2.1.2 | Rakefile |
with_model-2.1.1 | Rakefile |
with_model-2.1.0 | Rakefile |