coderunner 0.18.5 → 1.0.0
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/README.md +2 -0
- data/VERSION +1 -1
- data/coderunner.gemspec +2 -2
- data/test/test_coderunner.rb +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: cfa930b068035e97a8b02f28c3363b27f2450386
|
|
4
|
+
data.tar.gz: be28ce8f20d6aa48fe7fc8cc59c8d7df4c93cdf8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24f6c77ccc60ce6046586832ee31dd9a55c0cc0b46ee3dcbb4ca07cb8e6db52e20ac5d3b5af41b8784498f7ca6e7e5d7b1d827a013d1fa5cf1e8854375c7ade6
|
|
7
|
+
data.tar.gz: 2fdb5469b76eb5341e7412edc8db279a1204e9c9031122a884b2d0e59ef732ba3ecb63fdbd9ad054cb06484afbc9907cc1c1d0eecf93b9783511b215e291effa
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
CodeRunner
|
|
2
2
|
==========
|
|
3
3
|
|
|
4
|
+
[](https://travis-ci.org/coderunner-framework/coderunner)
|
|
5
|
+
|
|
4
6
|
CodeRunner is a framework for the automated running and analysis of
|
|
5
7
|
simulations. It automatically generates any necessary input files, organises
|
|
6
8
|
the output data and analyses it. Because it is a modular system, it can easily
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
1.0.0
|
data/coderunner.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
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.
|
|
5
|
+
# stub: coderunner 1.0.0 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.
|
|
10
|
+
s.version = "1.0.0"
|
|
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"]
|
data/test/test_coderunner.rb
CHANGED
|
@@ -9,8 +9,8 @@ module MiniTest::Assertions
|
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
unless $cpp_command = ENV['
|
|
13
|
-
raise "Please specify the environment variable
|
|
12
|
+
unless $cpp_command = ENV['CXX']
|
|
13
|
+
raise "Please specify the environment variable CXX (the C++ compiler)"
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
$ruby_command = "#{RbConfig::CONFIG['bindir']}/#{RbConfig::CONFIG['ruby_install_name']}"
|