Sha256: 948d638563be7af6c818a7e9dc63fb270f35d96f9521b1782a4eb674a11e4b35
Contents?: true
Size: 663 Bytes
Versions: 3
Compression:
Stored size: 663 Bytes
Contents
# rubocop:disable Style/SymbolArray # rubocop:disable Style/HashSyntax require 'bundler/gem_tasks' task :validate_gemspec do Bundler.load_gemspec('git-branch--stray.gemspec').validate end task :version => :validate_gemspec do puts Git::Branch::Stray::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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
git-branch--stray-1.2.0 | Rakefile |
git-branch--stray-1.1.0 | Rakefile |
git-branch--stray-1.0.0 | Rakefile |