Rakefile in jquery-cdn-1.11.3 vs Rakefile in jquery-cdn-1.12.0
- old
+ new
@@ -13,10 +13,10 @@
def github_tags(repo)
http = HTTPClient.new
body = http.get("https://api.github.com/repos/#{repo}/tags").body
response = JSON.parse(body)
- response.reject { |i| i['name'] =~ /rc|beta|\+/ }.
+ response.reject { |i| i['name'] =~ /rc|beta|alpha/ }.
map { |i| Gem::Version.new(i['name']) }.
sort
end
def fetch(tag)