Sha256: d1dbed0f8d2da9995f6cca5f796c3b753535b9b0abd7e1e418769746fe7e244f

Contents?: true

Size: 829 Bytes

Versions: 4

Compression:

Stored size: 829 Bytes

Contents

# rubocop:disable Style/SymbolArray
# rubocop:disable Style/HashSyntax

require 'bundler/gem_tasks'

task :validate_gemspec do
  Bundler.load_gemspec('gloc.gemspec').validate
end

task :version => :validate_gemspec do
  puts GLOC.version
end

require 'rubocop/rake_task'

RuboCop::RakeTask.new(:rubocop)

require 'rake/testtask'

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

task :default => [:version, :rubocop, :test]

task :documentation

task :ready => :documentation do
  sh('bundle --quiet') # regenerate Gemfile.lock e.g. if version has changed
  sh('git diff-index --quiet HEAD --') # https://stackoverflow.com/a/2659808
end

Rake::Task['build'].enhance([:default, :ready])

# rubocop:enable Style/HashSyntax
# rubocop:enable Style/SymbolArray

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gloc-0.7.0 Rakefile
gloc-0.6.0 Rakefile
gloc-0.5.0 Rakefile
gloc-0.4.0 Rakefile