-
-
Notifications
You must be signed in to change notification settings - Fork 395
/
Rakefile
51 lines (42 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
require 'bundler'
Bundler.setup
Bundler::GemHelper.install_tasks
require 'rake'
require 'rspec/core/rake_task'
require 'rspec/expectations/version'
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:cucumber)
if RUBY_VERSION >= '2.4' && RUBY_ENGINE == 'ruby'
require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop)
end
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
t.ruby_opts = %w[-w]
end
namespace :clobber do
desc "delete generated .rbc files"
task :rbc do
sh 'find . -name "*.rbc" | xargs rm'
end
end
desc "delete generated files"
task :clobber => ["clobber:rbc"] do
rm_rf 'doc'
rm_rf '.yardoc'
rm_rf 'pkg'
rm_rf 'tmp'
rm_rf 'coverage'
end
if RUBY_VERSION >= '2.4' && RUBY_ENGINE == 'ruby'
task :default => [:spec, :cucumber, :rubocop]
else
task :default => [:spec, :cucumber]
end
task :verify_private_key_present do
private_key = File.expand_path('~/.gem/rspec-gem-private_key.pem')
unless File.exist?(private_key)
raise "Your private key is not present. This gem should not be built without it."
end
end
task :build => :verify_private_key_present