Sha256: f2381ea5840987639f0a9076df924370fc8d9ee1ca31ad014222ae6ab5de7851
Contents?: true
Size: 661 Bytes
Versions: 5
Compression:
Stored size: 661 Bytes
Contents
# rubocop:disable Style/SymbolArray # rubocop:disable Style/HashSyntax require 'bundler/gem_tasks' task :validate_gemspec do Bundler.load_gemspec('git-superproject.gemspec').validate end task :version => :validate_gemspec do puts Git::Superproject::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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
git-superproject-1.0.0 | Rakefile |
git-superproject-0.2.2 | Rakefile |
git-superproject-0.2.1 | Rakefile |
git-superproject-0.2.0 | Rakefile |
git-superproject-0.1.0 | Rakefile |