gs2crmod 0.10.4 → 0.10.5
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/gs2crmod.gemspec +1 -1
- data/lib/gs2crmod/ingen.rb +4 -0
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.10.
|
|
1
|
+
0.10.5
|
data/gs2crmod.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "gs2crmod"
|
|
8
|
-
s.version = "0.10.
|
|
8
|
+
s.version = "0.10.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Edmund Highcock", "Ferdinand van Wyk"]
|
data/lib/gs2crmod/ingen.rb
CHANGED
|
@@ -200,6 +200,10 @@ def ingen
|
|
|
200
200
|
#warning(v"#{var} not set or .false. --- " + warn) unless send(var) and send(var).fortran_true?
|
|
201
201
|
#end
|
|
202
202
|
|
|
203
|
+
error("Please specify nwrite") unless @nwrite
|
|
204
|
+
error("Please specify nstep") unless @nstep
|
|
205
|
+
|
|
206
|
+
|
|
203
207
|
warning("You will write out diagnostics less than 50 times") if @nstep/@nwrite < 50
|
|
204
208
|
|
|
205
209
|
########################
|