Sha256: e96b6ca22df191a1476005c9fc565e55c3ed12a6cff420c746071e439ae66ed5
Contents?: true
Size: 545 Bytes
Versions: 6
Compression:
Stored size: 545 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" require 'rubocop/rake_task' require 'yard' YARD::Rake::YardocTask.new(:doc) do |t| # The dash has to be between the two to "divide" the source files and # miscellaneous documentation files that contain no code t.files = ['lib/**/*.rb', '-', 'LICENSE.txt', 'CHANGELOG.md'] end RSpec::Core::RakeTask.new(:spec) do |spec| spec.rspec_opts = ["-c", "--order=rand"] spec.pattern = FileList['spec/**/*_spec.rb'] end RuboCop::RakeTask.new(:rubocop) task default: [:spec, :rubocop]
Version data entries
6 entries across 6 versions & 2 rubygems
Version | Path |
---|---|
prorate-0.7.3 | Rakefile |
prorate-0.7.2 | Rakefile |
praroter-1.0.2 | Rakefile |
praroter-1.0.1 | Rakefile |
praroter-1.0.0 | Rakefile |
prorate-0.7.1 | Rakefile |