Sha256: 2095652600e76fe7897d26ec7137ce41f8611a77f64b7523712638334d7f3f30

Contents?: true

Size: 562 Bytes

Versions: 14

Compression:

Stored size: 562 Bytes

Contents

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

require_relative 'lib/gmaps_geocoding/version'

Rake::TestTask.new do |t|
  t.libs << 'lib/gmaps_geocoding'
  t.test_files = FileList['test/**/*_test.rb']
  t.verbose = true
end
task default: [:test, :rubocop]

RuboCop::RakeTask.new do |task|
  task.formatters = ['simple']
  task.fail_on_error = false
end

desc 'Generate documentation'
YARD::Rake::YardocTask.new do |t|
  t.files = %w(lib/**/*.rb - LICENSE.txt)
  t.options = %w(--main README.md --no-private)
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gmaps_geocoding-1.3.5 Rakefile
gmaps_geocoding-1.3.4 Rakefile
gmaps_geocoding-1.3.3 Rakefile
gmaps_geocoding-1.3.2 Rakefile
gmaps_geocoding-1.3.1 Rakefile
gmaps_geocoding-1.3.0 Rakefile
gmaps_geocoding-1.2.2 Rakefile
gmaps_geocoding-1.2.1 Rakefile
gmaps_geocoding-1.2.0 Rakefile
gmaps_geocoding-1.1.4 Rakefile
gmaps_geocoding-1.1.3 Rakefile
gmaps_geocoding-1.1.2 Rakefile
gmaps_geocoding-1.1.1 Rakefile
gmaps_geocoding-1.1.0 Rakefile