Sha256: 013bd6519554be8e67f73a8c3cdf25ebc6bb7cc03bcf018ca71e44193c4ec7b9

Contents?: true

Size: 470 Bytes

Versions: 21

Compression:

Stored size: 470 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'

Dir['lib/fhir_client/tasks/**/*.rake'].sort.each do |ext|
  load ext
end

Rake::TestTask.new(:test) do |t|
  t.libs << 'test'
  t.libs << 'lib'
  t.test_files = FileList['test/**/*_test.rb']
  t.verbose = true
  t.warning = false
end

desc 'Run rubocop'
task :rubocop do
  RuboCop::RakeTask.new
end

task test: [:rubocop] do
  system('open coverage/index.html')
end

task default: [:test]

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
fhir_client-4.0.5 Rakefile
fhir_client-4.0.4 Rakefile
fhir_client-4.0.3 Rakefile
fhir_client-4.0.2 Rakefile
fhir_client-4.0.1 Rakefile
fhir_client-4.0.0 Rakefile
fhir_client-3.1.2 Rakefile
fhir_client-3.1.1 Rakefile
fhir_client-3.1.0 Rakefile
fhir_client-3.0.7 Rakefile
fhir_client-3.0.6 Rakefile
fhir_client-3.0.5 Rakefile
fhir_client-3.0.4 Rakefile
fhir_client-3.0.3 Rakefile
fhir_client-3.0.2 Rakefile
fhir_client-3.0.1 Rakefile
fhir_client-1.8.0 Rakefile
fhir_client-1.6.10 Rakefile
fhir_client-1.6.9 Rakefile
fhir_client-1.6.8 Rakefile