Sha256: dd85fb15e85e6b764bbf68b3e618160e47dc0944b080b30297ac182597babefa
Contents?: true
Size: 1.25 KB
Versions: 6
Compression:
Stored size: 1.25 KB
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 module TwitterCldr module Resources CLDR_URL = 'http://unicode.org/Public/cldr/24/core.zip' ICU4J_URL = 'http://download.icu-project.org/files/icu4j/52.1/icu4j-52_1.jar' class << self def download_if_necessary(path, url) if File.file?(path) puts "Using '#{path}'." else puts "Downloading '#{url}' to '#{path}'." FileUtils.mkdir_p(File.dirname(path)) system("curl #{url} -o #{path}") end path end def download_cldr_if_necessary(path, url = CLDR_URL) if File.directory?(path) puts "Using CLDR data from '#{path}'." else begin require 'zip' rescue LoadError raise StandardError.new("Unable to require 'zip'. Please switch to at least Ruby 1.9, then rebundle and try again.") end require 'cldr/download' puts "Downloading CLDR data from '#{url}' to '#{path}'." Cldr.download(url, path) end path end def download_icu4j_if_necessary(path, url = ICU4J_URL) download_if_necessary(path, url) path end end end end
Version data entries
6 entries across 6 versions & 1 rubygems