From 9fb1630f32adbbe41aeaf3da2cfea0180dd9d17a Mon Sep 17 00:00:00 2001 From: Emiliano Mancuso Date: Thu, 26 Mar 2020 10:41:34 -0300 Subject: [PATCH] Update shard.yml to run on crystal since 0.25.0 --- .travis.yml | 4 ++++ README.md | 2 -- shard.yml | 3 +-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 227f158..45fa88c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,9 @@ language: crystal +crystal: + - latest + - nightly + script: - crystal spec - crystal tool format --check diff --git a/README.md b/README.md index b4b0d5a..771972c 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ A tiny and simple test framework for Crystal with common assertions and no pollution into `Object` class. -> NOTE: This library was built during the Citrusybte's Investment Day program - ## Example ```crystal diff --git a/shard.yml b/shard.yml index 5d9ffa1..85d2505 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,6 @@ name: crotest version: 1.0.0 +crystal: ">= 0.25" authors: - Emiliano Mancuso @@ -7,6 +8,4 @@ authors: description: | A tiny and simple test framework for Crystal with common assertions and no pollution into Object class. -crystal: 0.25.0 - license: MIT