mesa_test 0.0.19 → 0.0.20
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.
- checksums.yaml +4 -4
- data/lib/mesa_test.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae90768598e2d3b36463137ab145993b1ba1c541
|
|
4
|
+
data.tar.gz: 1166777ede80f334d8f19f2eb435a8ee4685445b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97678b777bff66fb193fb921bc3d75a713f5b83660b68db596a59c698f54c842e2b0cd35bc796d7b6f21e737d7a8594e83f586c0ce0b8c8401d8bd064dc7c31f
|
|
7
|
+
data.tar.gz: 14a794c85800887f0e49e2c08da7cf02ad0fa68f5f5a8a81c63495949c425486822628d86511a168c99460315c4bd89fe0a660afdfc5ce7e872954c63d682ecc
|
data/lib/mesa_test.rb
CHANGED
|
@@ -1130,11 +1130,6 @@ class MesaTestCase
|
|
|
1130
1130
|
return unless File.exist?(final_model)
|
|
1131
1131
|
FileUtils.rm(final_model)
|
|
1132
1132
|
end
|
|
1133
|
-
|
|
1134
|
-
# force the execution to happen with bash
|
|
1135
|
-
def bash_execute(command)
|
|
1136
|
-
system('bash -c "' + command + '"')
|
|
1137
|
-
end
|
|
1138
1133
|
end
|
|
1139
1134
|
|
|
1140
1135
|
################################
|
|
@@ -1194,3 +1189,8 @@ def generate_seeds_rb(mesa_dir, outfile)
|
|
|
1194
1189
|
f.puts ')'
|
|
1195
1190
|
end
|
|
1196
1191
|
end
|
|
1192
|
+
|
|
1193
|
+
# force the execution to happen with bash
|
|
1194
|
+
def bash_execute(command)
|
|
1195
|
+
system('bash -c "' + command + '"')
|
|
1196
|
+
end
|