coderunner 0.16.18 → 0.16.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24e1d40b5039aa83c1f523978438f2dd68011b6c
4
- data.tar.gz: 5a03886c56b241ae3e990ba1b5eda9c529ad0cd8
3
+ metadata.gz: 72930ce4dd1fb18fc037992914665d924a285358
4
+ data.tar.gz: 0b72724ad98ba0948b68415ac92c828fd53c4871
5
5
  SHA512:
6
- metadata.gz: c4537db3cc996f2cd264e8d32d5ed754020278036c829c6156b5020310909ccbba3c23dbea41e39ed8959331a08bd36784e47c6c1e217287a28eb04f88b2a4fe
7
- data.tar.gz: 84274c118cc1e15b05a6544a5c9715f2d2bffef2cd1293f0aff66c9072825a7960b59de6d313cf75a0beac066af248ef4f5eaa145c3673c7f8721547550558c6
6
+ metadata.gz: e296ab114aab78403321c33e7a6c101df67dfa3b44c8df523182abddda7d104091a7ff71195916b47db78d9c1ad516ef64157dfddef9f374b66a2e493299d190
7
+ data.tar.gz: 2f0895e8e1ebf20b2d480c7a353d95b5b19b4166e76cef28823404849f30d625a384c67b53a9647b1e287e51da806f71d17e37e74cf01bffa25b41865857da1b
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.16.18
1
+ 0.16.19
data/coderunner.gemspec CHANGED
@@ -2,17 +2,17 @@
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: coderunner 0.16.18 ruby lib
5
+ # stub: coderunner 0.16.19 ruby lib
6
6
  # stub: ext/extconf.rb
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "coderunner"
10
- s.version = "0.16.18"
10
+ s.version = "0.16.19"
11
11
 
12
12
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
13
13
  s.require_paths = ["lib"]
14
14
  s.authors = ["Edmund Highcock"]
15
- s.date = "2015-07-20"
15
+ s.date = "2015-07-21"
16
16
  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."
17
17
  s.email = "edmundhighcock@sourceforge.net"
18
18
  s.executables = ["coderunner", "coderunnerrepo"]
@@ -265,7 +265,10 @@ EOF
265
265
  def pull(remote)
266
266
  namehost, folder, _barefolder = split_url(remote.name)
267
267
  try_system %[ssh #{namehost} "cd #{folder} && git push origin"]
268
- bare_repo.fetch(remote)
268
+ Dir.chdir(bare_repo.repo.to_s) do
269
+ try_system("git fetch #{remote.name} master:master")
270
+ end
271
+ #bare_repo.fetch(remote)
269
272
  simple_pull(remote('origin'))
270
273
  end
271
274
  # A simple git push... does not try to push to local
@@ -15,6 +15,7 @@ class CodeRunner
15
15
  #PBS -l select=#{nodes}
16
16
  #PBS -l walltime=#{sprintf("%02d:%02d:%02d", hours, mins, secs)}
17
17
  #{@project ? "#PBS -A #@project" : ""}
18
+ #{@queue ? "#PBS -q #@queue" : ""}
18
19
 
19
20
  ### start of jobscript
20
21
  cd $PBS_O_WORKDIR
@@ -97,6 +97,7 @@ module Moab
97
97
  #PBS -l mppnppn=#{ppn}
98
98
  #PBS -l walltime=#{sprintf("%02d:%02d:%02d", hours, mins, secs)}
99
99
  #{@project ? "#PBS -A #@project" : ""}
100
+ #{@queue ? "#PBS -q #@queue" : ""}
100
101
 
101
102
  ### start of jobscript
102
103
  cd $PBS_O_WORKDIR
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coderunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.18
4
+ version: 0.16.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edmund Highcock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-20 00:00:00.000000000 Z
11
+ date: 2015-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphkit