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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -16
  3. data/lib/git/contest/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f451f19130cb0cd787bad19b2b9769c8c24b985a
4
- data.tar.gz: 8dd55926c926aaa33819fc56d56938721e0880cd
3
+ metadata.gz: d9380d569b25210d2ba83322e33665663b897a23
4
+ data.tar.gz: 29d1b93735dd8e5dc0bd6a3cb69f6dd3595ffe29
5
5
  SHA512:
6
- metadata.gz: 7edc486019a63fa63c5faea7ba7447e35d15e6d6065a0a80471a8ab51d8ef4b9b4f4ceffc83d5ed2ca3e8ddfe6ccf6634e1722ca0f22baee8c9affcf0f1b3d4c
7
- data.tar.gz: 84d9cefb8a2e1f7ec48b8fd829fce98770cc2fcdb247b1d237c52b4cd4fd27b3a814f45b5e87d1267d6b7278b82e3c1ef05d2eb921734f9a53efd8ba13552a8a
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
- cxdeforces:
148
- driver: cxdeforces
149
- user: your_cxdeforces_id
150
- password: your_cxdeforces_password
151
- multi_account_axj_1:
152
- driver: axj
153
- user: your_axj_id_1
154
- password: your_axj_password_1
155
- multi_account_axj_2:
156
- driver: axj
157
- user: your_axj_id_2
158
- password: your_axj_password_2
159
- uvx:
160
- driver: uvx
161
- user: your_uvx_id
162
- password: your_uvx_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
@@ -7,6 +7,6 @@
7
7
 
8
8
  module Git
9
9
  module Contest
10
- VERSION = "0.0.2"
10
+ VERSION = "0.0.3"
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-contest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroyuki Sano