coderunner 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.12.1
1
+ 0.12.2
data/coderunner.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "coderunner"
8
- s.version = "0.12.1"
8
+ s.version = "0.12.2"
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"]
12
- s.date = "2013-03-19"
12
+ s.date = "2013-03-22"
13
13
  s.description = "CodeRunner is a framework for the automated running and analysis of simulations. It automatically generates any necessary input files, organises the output data and analyses it. Because it is a modular system, it can easily be customised to work with any system and any simulation code. One of its greatest strengths is that it is independent of any one simulation code; thus it can easily plot and compare the data from different codes."
14
14
  s.email = "edmundhighcock@sourceforge.net"
15
15
  s.executables = ["coderunner"]
@@ -48,6 +48,7 @@ Gem::Specification.new do |s|
48
48
  "lib/coderunner/remote_code_runner.rb",
49
49
  "lib/coderunner/run.rb",
50
50
  "lib/coderunner/system_modules/blue_joule.rb",
51
+ "lib/coderunner/system_modules/edison.rb",
51
52
  "lib/coderunner/system_modules/franklin.rb",
52
53
  "lib/coderunner/system_modules/generic_linux.rb",
53
54
  "lib/coderunner/system_modules/genericlinux_testsystem.rb",
@@ -77,7 +78,7 @@ Gem::Specification.new do |s|
77
78
  s.require_paths = ["lib"]
78
79
  s.required_ruby_version = Gem::Requirement.new(">= 1.9.1")
79
80
  s.rubyforge_project = "coderunner"
80
- s.rubygems_version = "1.8.23"
81
+ s.rubygems_version = "1.8.24"
81
82
  s.summary = "A framework for the automated running and analysis of simulations."
82
83
 
83
84
  if s.respond_to? :specification_version then
data/ext/graph_kit.c CHANGED
@@ -645,3 +645,4 @@ void Init_graph_kit()
645
645
  rb_define_method(cgraph_kit, "to_vtk_legacy_fast", graph_kit_to_vtk_legacy_2, 1);
646
646
 
647
647
  }
648
+
@@ -0,0 +1,13 @@
1
+ class CodeRunner
2
+ require SCRIPT_FOLDER + '/system_modules/moab.rb'
3
+ module Edison
4
+ include Moab
5
+ #def batch_script
6
+ #raise "Please specify project" unless @project
7
+ #super
8
+ #end
9
+ def max_ppn
10
+ 16
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coderunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-19 00:00:00.000000000 Z
12
+ date: 2013-03-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphkit
@@ -215,6 +215,7 @@ files:
215
215
  - lib/coderunner/remote_code_runner.rb
216
216
  - lib/coderunner/run.rb
217
217
  - lib/coderunner/system_modules/blue_joule.rb
218
+ - lib/coderunner/system_modules/edison.rb
218
219
  - lib/coderunner/system_modules/franklin.rb
219
220
  - lib/coderunner/system_modules/generic_linux.rb
220
221
  - lib/coderunner/system_modules/genericlinux_testsystem.rb
@@ -259,7 +260,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
259
260
  version: '0'
260
261
  requirements: []
261
262
  rubyforge_project: coderunner
262
- rubygems_version: 1.8.23
263
+ rubygems_version: 1.8.24
263
264
  signing_key:
264
265
  specification_version: 3
265
266
  summary: A framework for the automated running and analysis of simulations.