gettc 1.7.1 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/gettc +0 -0
- data/core/lib/gettc.rb +1 -1
- data/dist/config.yml +1 -1
- data/dist/include/python/topcoder/__pycache__/__init__.cpython-33.pyc +0 -0
- data/dist/include/python/topcoder/__pycache__/errors.cpython-33.pyc +0 -0
- data/dist/include/python/topcoder/__pycache__/reader.cpython-33.pyc +0 -0
- data/dist/include/python/topcoder/__pycache__/writer.cpython-33.pyc +0 -0
- data/dist/template/solve/go/Makefile +1 -1
- data/dist/template/solve/python/Makefile +2 -2
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9103767cc73f96750957f15fb03e57b8a47f6f4
|
4
|
+
data.tar.gz: fb6b624cdbf1c3b3673bdb6d33166cf952adf702
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cc66a82c2f6d8d2552041ca8a256ea247bffc14d00f5578eb7c6be6f9cf17cd7250faf4c25ca223edbbbc5675476535ebeb14ea7a42c98907fd2d2fffb7247e
|
7
|
+
data.tar.gz: 2f4aecdf24cfeabeafc1d34502db9bba7910ddf9863464ddca875469ee0933ebfbf87b83ed861f15f54a0c9683ba8c470da02052435be2205854be1a68b2d992
|
data/bin/gettc
CHANGED
File without changes
|
data/core/lib/gettc.rb
CHANGED
data/dist/config.yml
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -5,12 +5,12 @@ RUNNER = sh ../../bin/runner.sh
|
|
5
5
|
|
6
6
|
run = $(RUNNER) $1 ./<%= prob.name %>Runner.py $(DATA_D)/$2 $(OUTPUT_D)/$2
|
7
7
|
|
8
|
+
default : usage
|
9
|
+
|
8
10
|
setup :
|
9
11
|
if [ ! -d $(OUTPUT_D) ]; then mkdir -p $(OUTPUT_D); fi
|
10
12
|
chmod +x <%= prob.name %>Runner.py
|
11
13
|
|
12
|
-
default : usage
|
13
|
-
|
14
14
|
usage :
|
15
15
|
@cat $(GETTC_HOME)/usage
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gettc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hpricot
|
@@ -64,6 +64,10 @@ files:
|
|
64
64
|
- dist/include/java/engine.rb
|
65
65
|
- dist/include/python/engine.rb
|
66
66
|
- dist/include/python/topcoder/__init__.py
|
67
|
+
- dist/include/python/topcoder/__pycache__/__init__.cpython-33.pyc
|
68
|
+
- dist/include/python/topcoder/__pycache__/errors.cpython-33.pyc
|
69
|
+
- dist/include/python/topcoder/__pycache__/reader.cpython-33.pyc
|
70
|
+
- dist/include/python/topcoder/__pycache__/writer.cpython-33.pyc
|
67
71
|
- dist/include/python/topcoder/errors.py
|
68
72
|
- dist/include/python/topcoder/reader.py
|
69
73
|
- dist/include/python/topcoder/writer.py
|