From dc8d69e0f4abf04609aba653bb2eac7dfaec1c73 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 17 Dec 2014 10:31:51 -0800 Subject: [PATCH 1/4] Updating Linguist version for v4.2.4 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 45fb0292..6f4f97ba 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "4.2.3" + VERSION = "4.2.4" end From 0239127db43208e5c9aaf8a762a0010496f54253 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Dec 2014 08:02:24 -0800 Subject: [PATCH 2/4] 4.2.5b1 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 6f4f97ba..61ad1b89 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "4.2.4" + VERSION = "4.2.5b1" end From 0584fbf42ba3ea54d997dda5849595014adefaa2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Dec 2014 14:17:36 -0800 Subject: [PATCH 3/4] 4.2.5 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 61ad1b89..bce0aef5 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "4.2.5b1" + VERSION = "4.2.5" end From ee9cc24e52b6cf45b55586fd96df8e8a75aaad92 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Dec 2014 14:28:33 -0800 Subject: [PATCH 4/4] Longer timeout --- script/download-grammars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/download-grammars b/script/download-grammars index e0dfe10c..cd7713f0 100755 --- a/script/download-grammars +++ b/script/download-grammars @@ -14,7 +14,7 @@ CSONC = File.expand_path("../../node_modules/.bin/csonc", __FILE__) class TarballPackage def self.fetch(tmp_dir, url) - `curl --silent --location --max-time 10 --output "#{tmp_dir}/archive" "#{url}"` + `curl --silent --location --max-time 30 --output "#{tmp_dir}/archive" "#{url}"` raise "Failed to fetch GH package: #{url} #{$?.to_s}" unless $?.success? output = File.join(tmp_dir, 'extracted')