Sha256: 1f03e64804ffe1bf3b02b9bdd8662ce1fd5d21d456ff6eee63d41e4adab9b2a0
Contents?: true
Size: 478 Bytes
Versions: 12
Compression:
Stored size: 478 Bytes
Contents
# frozen_string_literal: true require 'rspec/core/rake_task' require 'yard' task default: %i[test build document] RSpec::Core::RakeTask.new(:test) do |t| t.verbose = false end task :build do system('gem build easy-jsonapi.gemspec') end YARD::Rake::YardocTask.new(:document) do |t| t.files = ['lib/**/*.rb'] # optional t.options = ['--title', "YARD #{YARD::VERSION} Documentation", '--markup=markdown'] # optional t.stats_options = ['--list-undoc'] # optional end
Version data entries
12 entries across 12 versions & 1 rubygems