We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b0a80 commit 300611bCopy full SHA for 300611b
rake_tasks/crazy_fun/mappings/export_mappings.rb
@@ -1,7 +1,13 @@
1
-class ExportMappings
2
- def add_all(fun)
3
- fun.add_mapping("export_file", Export::CheckPreconditions.new)
4
- fun.add_mapping("export_file", Export::CreateTask.new)
5
- fun.add_mapping("export_file", Export::AddDependencies.new)
+module CrazyFun
+ module Mappings
+ class ExportMappings
+ # TODO: LH - Check the usage of this. It seems it isn't consumed
+ # If so all downstream fun mappings (Export::), can be removed
6
+ def add_all(fun)
7
+ fun.add_mapping("export_file", Export::CheckPreconditions.new)
8
+ fun.add_mapping("export_file", Export::CreateTask.new)
9
+ fun.add_mapping("export_file", Export::AddDependencies.new)
10
+ end
11
12
end
13
0 commit comments