Sha256: 06aed4395e1681657d891d384e371a9ea1d0e6efcd473775281badaba368297a
Contents?: true
Size: 651 Bytes
Versions: 2
Compression:
Stored size: 651 Bytes
Contents
# rubocop:disable Style/SymbolArray # rubocop:disable Style/HashSyntax require 'bundler/gem_tasks' task :validate_gemspec do Bundler.load_gemspec('git-conform.gemspec').validate end task :version => :validate_gemspec do puts Git::Conform::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 => [:rubocop, :test] task :documentation Rake::Task['build'].enhance([:default, :documentation]) # rubocop:enable Style/HashSyntax # rubocop:enable Style/SymbolArray
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-conform-1.1.0 | Rakefile |
git-conform-1.0.0 | Rakefile |