coderunner 0.11.6 → 0.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/coderunner.gemspec +1 -1
- data/lib/coderunner/instance_methods.rb +2 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.11.
|
|
1
|
+
0.11.7
|
data/coderunner.gemspec
CHANGED
|
@@ -430,6 +430,8 @@ class CodeRunner
|
|
|
430
430
|
# ep run_class.constants
|
|
431
431
|
# ep run_class_names
|
|
432
432
|
|
|
433
|
+
modlet_file = "#{code}crmod/#{modlet}.rb"
|
|
434
|
+
require modlet_file
|
|
433
435
|
run_class = recursive_const_get(run_class_name)
|
|
434
436
|
run_class.instance_variable_set(:@modlet, modlet)
|
|
435
437
|
end
|
|
@@ -1737,7 +1739,6 @@ end
|
|
|
1737
1739
|
"/merged_code_runner.rb",
|
|
1738
1740
|
'/run.rb',
|
|
1739
1741
|
'/heuristic_run_methods.rb',
|
|
1740
|
-
'/run_backwards_compatibility.rb'
|
|
1741
1742
|
].each do |file|
|
|
1742
1743
|
file = CodeRunner::SCRIPT_FOLDER + file
|
|
1743
1744
|
require file
|