trinitycrmod 0.3.2 → 0.3.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 +7 -0
- 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: 5e545c1e6f3e5425538c03f8c5efc2c8a1d84b71
|
|
4
|
+
data.tar.gz: adccdd76ebf0aac64282417a6c8bd05479e8617c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 791f4c288cef9b7fab577ab24527e1a7ac0fac36ba77af0e6417cd363597390f7b0611d4207e9f4157817386c1ec11b4358cc4050c5e4a4f792a26732abaa925
|
|
7
|
+
data.tar.gz: 63a16a90caa5c4607be2033f4786ea07c2345b0948cccd6bbc50c6e3484b49c483cf16689033b115bdc03ffa79d6fc14c9e6dcd27b46c959affe8bdbea7a9655
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/lib/trinitycrmod/trinity.rb
CHANGED
|
@@ -73,6 +73,13 @@ class CodeRunner
|
|
|
73
73
|
beginning
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
+
def self.load(dir, runner)
|
|
77
|
+
run = super(dir, runner)
|
|
78
|
+
grun_list = run.instance_variable_get(:@gs2_run_list)
|
|
79
|
+
grun_list.values.each{|r| r.runner=runner} if grun_list.kind_of? Hash
|
|
80
|
+
run
|
|
81
|
+
end
|
|
82
|
+
|
|
76
83
|
|
|
77
84
|
# This is a hook which gets called just before submitting a simulation. It sets up the folder and generates any necessary input files.
|
|
78
85
|
def generate_input_file
|
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.3.
|
|
5
|
+
# stub: trinitycrmod 0.3.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "trinitycrmod"
|
|
9
|
-
s.version = "0.3.
|
|
9
|
+
s.version = "0.3.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"]
|