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

Version Path
easy-jsonapi-1.0.11 Rakefile
easy-jsonapi-1.0.10 Rakefile
easy-jsonapi-1.0.9 Rakefile
easy-jsonapi-1.0.8 Rakefile
easy-jsonapi-1.0.7 Rakefile
easy-jsonapi-1.0.6 Rakefile
easy-jsonapi-1.0.5 Rakefile
easy-jsonapi-1.0.4 Rakefile
easy-jsonapi-1.0.3 Rakefile
easy-jsonapi-1.0.2 Rakefile
easy-jsonapi-1.0.1 Rakefile
easy-jsonapi-1.0.0 Rakefile