From 4241d44de87d8f04f593f683e913980bc746b3d6 Mon Sep 17 00:00:00 2001 From: Samantha McVey Date: Wed, 9 Nov 2016 18:06:38 -0800 Subject: Add support for checking YAML validity using Travis CI --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Gemfile (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..eb73fd89 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +group :test do + gem 'rake' +end -- cgit v1.2.3 From 70d6977ccc07b667da0ed165b7706afbb5190816 Mon Sep 17 00:00:00 2001 From: Samantha McVey Date: Wed, 9 Nov 2016 20:57:13 -0800 Subject: Use charlock_holmes to do encoding detection. In my tests it has properly identified incorrect encodings that used to be present on older commits. This will help ensure this won't happen again, giving people instant feedback and allowing all pull requests to be checked --- Gemfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index eb73fd89..018aeb17 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ group :test do gem 'rake' + gem 'charlock_holmes' end -- cgit v1.2.3 From 0a0acadf06661b004dd9bbf3797cdd3d15edab96 Mon Sep 17 00:00:00 2001 From: Samantha McVey Date: Wed, 9 Nov 2016 21:02:04 -0800 Subject: Add rubygems.org as gem source so Travis CI can use charlock_holmes --- Gemfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 018aeb17..c30a6497 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ +source 'http://rubygems.org' group :test do gem 'rake' gem 'charlock_holmes' -- cgit v1.2.3