diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2020-08-05 19:14:26 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2020-08-05 19:14:26 +0200 |
commit | 94d2e329a4b9c325b32de5bd641e5e1e99a1c8f4 (patch) | |
tree | 1d9f733e12eb8dc27610da0d52674ae1aec9fefc /lib/colonial_twilight.rb | |
download | colonial-twilight-94d2e329a4b9c325b32de5bd641e5e1e99a1c8f4.zip colonial-twilight-94d2e329a4b9c325b32de5bd641e5e1e99a1c8f4.tar.gz |
Inital commit
Diffstat (limited to 'lib/colonial_twilight.rb')
-rw-r--r-- | lib/colonial_twilight.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/colonial_twilight.rb b/lib/colonial_twilight.rb new file mode 100644 index 0000000..5785241 --- /dev/null +++ b/lib/colonial_twilight.rb @@ -0,0 +1,10 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- + +module ColonialTwilight + MAJOR = 0 + MINOR = 1 + REVISION = 0 + VERSION = [MAJOR,MINOR,REVISION].join '.' +end + |