-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
38 lines (26 loc) · 846 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# rubocop:disable Style/SymbolArray
# rubocop:disable Style/HashSyntax
require 'bundler/gem_tasks'
task :validate_gemspec do
Bundler.load_gemspec('git-switcher.gemspec').validate
end
task :version => :validate_gemspec do
puts Git::Switcher.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