-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
45 lines (36 loc) · 1.17 KB
/
Copy pathRakefile
File metadata and controls
45 lines (36 loc) · 1.17 KB
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
# rbs_inline: enabled
require "bundler/gem_tasks"
require "fileutils"
require "rake/testtask"
Rake::TestTask.new do |task|
task.libs << "test"
task.pattern = "test/**/*_test.rb"
end
desc "Generate RBS signatures from inline annotations"
task :rbs do
FileUtils.rm_rf(File.expand_path("sig/generated", __dir__))
sh "bundle exec rbs-inline --base lib --base app --output sig/generated lib app"
FileUtils.rm_f(File.expand_path("sig/generated/lib/generators/solid_objects/templates/solid_objects.rbs", __dir__))
sh "bundle exec rbs -I sig/generated -I sig/support validate"
end
desc "Run Standard Ruby"
task :standard do
sh "bundle exec standardrb"
end
desc "Run Solid Queue's RuboCop policy"
task :rubocop do
sh "bundle exec rubocop"
end
desc "Type-check generated inline RBS signatures"
task :steep do
sh "bundle exec steep check"
end
desc "Prove the at-least-once clause by crashing an effect worker at a sink"
task :at_least_once do
sh "bundle exec ruby examples/at_least_once/demo.rb"
end
desc "Scan the Rails engine for security warnings"
task :security do
sh "bundle exec brakeman --force --no-pager -q ."
end
task default: %i[test standard rubocop rbs steep security]