git-contest 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -16
- data/lib/git/contest/version.rb +1 -1
- 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: d9380d569b25210d2ba83322e33665663b897a23
|
4
|
+
data.tar.gz: 29d1b93735dd8e5dc0bd6a3cb69f6dd3595ffe29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0be028034d747a1d3702c80e48ca7b9ca91fec51b8b13d4bb452655d6a5b356993cda8eb383435e5e23061382f04cfb85486dbcb8575959600c2b7187b5bdb8
|
7
|
+
data.tar.gz: 01b766f664b1f742938d5ac1aeb7f278cba8e2a7b3e530a9a224fbeefa7236c06e60e1c0d9dd68e1daa921cb61899a97e2f998310b59ae5dfa51a4a3598a2898
|
data/README.md
CHANGED
@@ -142,26 +142,40 @@ Set a path of git-contest config file.
|
|
142
142
|
Write the information of online judges and git-contest settings to this file.
|
143
143
|
|
144
144
|
#### Example of `config.yml`
|
145
|
+
The site name can be set as you want.
|
146
|
+
|
145
147
|
```yaml
|
146
148
|
sites:
|
147
|
-
|
148
|
-
driver:
|
149
|
-
user:
|
150
|
-
password:
|
151
|
-
|
152
|
-
driver:
|
153
|
-
user:
|
154
|
-
password:
|
155
|
-
|
156
|
-
driver:
|
157
|
-
user:
|
158
|
-
password:
|
159
|
-
|
160
|
-
driver:
|
161
|
-
user:
|
162
|
-
password:
|
149
|
+
codeforces:
|
150
|
+
driver: codeforces
|
151
|
+
user: your_codeforces_id
|
152
|
+
password: your_codeforces_password
|
153
|
+
multi_account_aoj_1:
|
154
|
+
driver: aizu_online_judge
|
155
|
+
user: your_aoj_id_1
|
156
|
+
password: your_aoj_password_1
|
157
|
+
multi_account_aoj_2:
|
158
|
+
driver: aizu_online_judge
|
159
|
+
user: your_aoj_id_2
|
160
|
+
password: your_aoj_password_2
|
161
|
+
uva:
|
162
|
+
driver: uva_online_judge
|
163
|
+
user: your_uva_id
|
164
|
+
password: your_uva_password
|
163
165
|
```
|
164
166
|
|
167
|
+
#### About contest drivers
|
168
|
+
Available drivers:
|
169
|
+
|
170
|
+
* codeforces
|
171
|
+
* aizu\_online\_judge
|
172
|
+
* uva\_online\_judge
|
173
|
+
|
174
|
+
You can write driver plugin on `${GIT_CONTEST_HOME}/plugins/driver_***.rb`
|
175
|
+
|
176
|
+
#### (TODO) How to write driver plugin
|
177
|
+
to be written here.
|
178
|
+
|
165
179
|
## Contributing
|
166
180
|
|
167
181
|
1. Fork it
|
data/lib/git/contest/version.rb
CHANGED