coderunner 0.13.14 → 0.13.15
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/fortran_namelist.rb +2 -0
- data/lib/cubecalccrmod/cubecalc.rb +2 -0
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.13.
|
1
|
+
0.13.15
|
data/coderunner.gemspec
CHANGED
@@ -640,6 +640,8 @@ def namelist_text(namelist, enum = nil)
|
|
640
640
|
output = formatted_variable_output(value)
|
641
641
|
text << " #{code_var} = #{output} #{var_hash[:description] ? "! #{var_hash[:description]}": ""}\n"
|
642
642
|
end
|
643
|
+
elsif rcp.namelists_to_print_not_specified? and rcp.namelists_to_print_not_specified.include?(namelist)
|
644
|
+
text << " ! #{code_var} not specified --- #{var_hash[:description]}\n"
|
643
645
|
end
|
644
646
|
end
|
645
647
|
text << "/\n\n"
|