From a3203dccba7549e5e7e0abcfcd6fa21b074d7aaf Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Tue, 11 Feb 2020 23:48:18 +0000 Subject: [PATCH] - clean --- .editorconfig | 9 --------- .travis.yml | 6 ------ spec/mango_spec.cr | 9 --------- spec/spec_helper.cr | 2 -- 4 files changed, 26 deletions(-) delete mode 100644 .editorconfig delete mode 100644 .travis.yml delete mode 100644 spec/mango_spec.cr delete mode 100644 spec/spec_helper.cr diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 163eb75..0000000 --- a/.editorconfig +++ /dev/null @@ -1,9 +0,0 @@ -root = true - -[*.cr] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = space -indent_size = 2 -trim_trailing_whitespace = true diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 765f0e9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: crystal - -# Uncomment the following if you'd like Travis to run specs and check code formatting -# script: -# - crystal spec -# - crystal tool format --check diff --git a/spec/mango_spec.cr b/spec/mango_spec.cr deleted file mode 100644 index b83fc66..0000000 --- a/spec/mango_spec.cr +++ /dev/null @@ -1,9 +0,0 @@ -require "./spec_helper" - -describe Mango do - # TODO: Write tests - - it "works" do - false.should eq(true) - end -end diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr deleted file mode 100644 index 3f10940..0000000 --- a/spec/spec_helper.cr +++ /dev/null @@ -1,2 +0,0 @@ -require "spec" -require "../src/mango"