trinitycrmod 0.5.2 → 0.5.3
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/VERSION +1 -1
- data/lib/trinitycrmod/trinity.rb +2 -2
- data/trinitycrmod.gemspec +2 -2
- 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: 5f86b11f4f50a1cedeedf5a30202530e53daaa6e
|
|
4
|
+
data.tar.gz: cd47a9cc136c1d7e4b3deca5efcb465288a71999
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56c11cca49a04d8a348b35e61865543adcfe56107eac7b150ebb47ff8f2c06c050a4e7f577b4e6879b1e935ccfd0c233ffda8f01844e999c0bdcc2221f2bcbfa
|
|
7
|
+
data.tar.gz: 3e99ff227799932f7c7539d414484135d6459c50080aab512399bb7d2893bb96c6f7d99c42f9d6d994be803a47c267bde60fa5e8b559a76a54875f6a8f970366
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.3
|
data/lib/trinitycrmod/trinity.rb
CHANGED
|
@@ -157,11 +157,11 @@ class CodeRunner
|
|
|
157
157
|
# This is a hook which gets called just before submitting a simulation. It sets up the folder and generates any necessary input files.
|
|
158
158
|
def generate_input_file
|
|
159
159
|
@run_name += "_t"
|
|
160
|
-
check_parameters
|
|
161
160
|
if @restart_id
|
|
162
161
|
@runner.run_list[@restart_id].restart(self)
|
|
163
162
|
end
|
|
164
163
|
setup_chease if uses_chease?
|
|
164
|
+
check_parameters
|
|
165
165
|
write_input_file
|
|
166
166
|
generate_gs2_input_files if @flux_option == "gs2"
|
|
167
167
|
end
|
|
@@ -283,7 +283,7 @@ class CodeRunner
|
|
|
283
283
|
gs2run.run_name = run_name
|
|
284
284
|
gs2run.nprocs = @nprocs
|
|
285
285
|
if i==0
|
|
286
|
-
block = Proc.new{
|
|
286
|
+
block = Proc.new{check_parameters}
|
|
287
287
|
else
|
|
288
288
|
block = Proc.new{}
|
|
289
289
|
end
|
data/trinitycrmod.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: trinitycrmod 0.5.
|
|
5
|
+
# stub: trinitycrmod 0.5.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "trinitycrmod"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|