Fix inconsistent indentation in swf_assets.rake
My editor now flags this stuff better, thank you editor!
This commit is contained in:
parent
2cc46703b9
commit
f6cece9a59
2 changed files with 25 additions and 31 deletions
|
@ -1,4 +1,3 @@
|
||||||
require "addressable/template"
|
|
||||||
require "addressable/uri"
|
require "addressable/uri"
|
||||||
require "httparty"
|
require "httparty"
|
||||||
require "json"
|
require "json"
|
||||||
|
@ -15,12 +14,7 @@ module NeopetsMediaArchive
|
||||||
include HTTParty
|
include HTTParty
|
||||||
base_uri "https://images.neopets.com/"
|
base_uri "https://images.neopets.com/"
|
||||||
|
|
||||||
OLD_MANIFEST_PATH_TEMPLATE = Addressable::Template.new(
|
ROOT_PATH = Pathname.new(Rails.configuration.neopets_media_archive_root)
|
||||||
"https://images.neopets.com/cp/{short_type}/data/{id1}/{id2}/{id3}/{id}_{hash}/manifest.json"
|
|
||||||
)
|
|
||||||
NEW_MANIFEST_PATH_TEMPLATE = Addressable::Template.new(
|
|
||||||
"https://images.neopets.com/cp/{short_type}/data/{id1}/{id2}/{id3}/{id}/manifest.json"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Load the file from the given `images.neopets.com` URI, as JSON.
|
# Load the file from the given `images.neopets.com` URI, as JSON.
|
||||||
def self.load_json(uri)
|
def self.load_json(uri)
|
||||||
|
@ -102,7 +96,7 @@ module NeopetsMediaArchive
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.local_file_path(uri)
|
def self.local_file_path(uri)
|
||||||
Rails.configuration.neopets_media_archive_root + path_within_archive(uri)
|
ROOT_PATH + path_within_archive(uri)
|
||||||
end
|
end
|
||||||
|
|
||||||
class NotFound < StandardError; end
|
class NotFound < StandardError; end
|
||||||
|
|
Loading…
Reference in a new issue