Sha256: a7ea1e720f6b6d43a48e3d6fc5c86987d3357c94164e0010e1affadeb7ae1ea5

Contents?: true

Size: 376 Bytes

Versions: 22

Compression:

Stored size: 376 Bytes

Contents

# frozen_string_literal: true

desc 'run rubocop'
task(:rubocop) do
  require 'rubocop'
  cli = RuboCop::CLI.new
  cli.run
end

require 'simplecov'
SimpleCov.start do
  add_filter '/test/'
end

require 'bundler'
Bundler::GemHelper.install_tasks

task :test do
  $LOAD_PATH << 'lib'
  Dir['./test/**/test_*.rb'].each { |test| require test }
end

task default: %i[test rubocop]

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
iso-jsonpath-1.1.7 Rakefile
iso-jsonpath-1.1.6 Rakefile
jsonpath-1.1.5 Rakefile
jsonpath-1.1.4 Rakefile
jsonpath-1.1.3 Rakefile
jsonpath-1.1.2 Rakefile
jsonpath-1.1.0 Rakefile
jsonpath-1.0.7 Rakefile
jsonpath-1.0.6 Rakefile
jsonpath-1.0.5 Rakefile
jsonpath-1.0.4 Rakefile
jsonpath-1.0.3 Rakefile
jsonpath-1.0.2 Rakefile
jsonpath-1.0.1 Rakefile
jsonpath-1.0.0 Rakefile
jsonpath-0.9.9 Rakefile
jsonpath-0.9.8 Rakefile
jsonpath-0.9.7 Rakefile
jsonpath-0.9.6 Rakefile
jsonpath-0.9.5 Rakefile