From e04d2c1d0f5ecebbe58769ca43959fc48a4011b4 Mon Sep 17 00:00:00 2001 From: Shreyas Mayya Date: Sun, 17 Jan 2021 11:03:49 -0500 Subject: [PATCH] version 0.13.1! --- .gitignore | 2 ++ README.md | 8 ++++---- bin/sciolyff | 2 +- sciolyff.gemspec | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index abfb93b..e31eb49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *.gem ztestscript*.rb .idea +.yardoc +doc diff --git a/README.md b/README.md index 3c2e80a..07beb05 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ other fun stuff. The format is a subset of YAML for easy implementation of parsers across many programming languages. A website that generates results tables based off SciolyFF files can be found -[here](https://duosmium.smayya.me/results/) and the source code for the website +[here](https://duosmium.org/results/) and the source code for the website [here](https://github.com/Duosmium/duosmium). ## Specification @@ -31,7 +31,7 @@ official releases, build from source: ``` git clone https://github.com/Duosmium/sciolyff.git && cd sciolyff gem build sciolyff.gemspec -gem install ./sciolyff-duosmium-0.13.0.gem +gem install ./sciolyff-duosmium-0.13.1.gem ``` ## Usage @@ -84,9 +84,9 @@ team_one.points #=> 448 i.teams #=> [#<...{:school=>"Troy H.S.", :number=>3, :state=>"CA"}>, ... ] ``` -A fuller example can be found here in the code for the Unosmium Results website, +A fuller example can be found here in the code for the Duosmium Results website, found [here](https://github.com/Duosmium/duosmium/blob/master/source/results/template.html.erb). There is also of course the -[documentation](https://www.rubydoc.info/gems/sciolyff-duosmium/0.13.0), a bit sparse +[documentation](https://www.rubydoc.info/gems/sciolyff-duosmium/0.13.1), a bit sparse currently. diff --git a/bin/sciolyff b/bin/sciolyff index 568d67b..ab8f5f4 100755 --- a/bin/sciolyff +++ b/bin/sciolyff @@ -5,7 +5,7 @@ require 'optimist' require 'sciolyff' opts = Optimist.options do - version 'sciolyff 0.13.0' + version 'sciolyff 0.13.1' banner <<~STRING Checks if a given file is in the Scioly File Format diff --git a/sciolyff.gemspec b/sciolyff.gemspec index 6ade87c..4eccd0c 100644 --- a/sciolyff.gemspec +++ b/sciolyff.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |s| s.license = 'MIT' s.name = 'sciolyff-duosmium' s.summary = 'A file format for Science Olympiad tournament results.' - s.version = '0.13.0' + s.version = '0.13.1' s.executables << 'sciolyff' s.add_runtime_dependency 'erubi', '~> 1.9' s.add_runtime_dependency 'optimist', '~> 3.0'