We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd7484e commit 99a7d5eCopy full SHA for 99a7d5e
app/models/apple/api.rb
@@ -27,7 +27,7 @@ def self.from_env
27
end
28
29
def self.api_base
30
- ENV['APPLE_PODCASTS_CONNECT_API_URL']
+ ENV["APPLE_PODCASTS_CONNECT_API_URL"]
31
32
33
def self.from_key(apple_key)
test/test_helper.rb
@@ -23,7 +23,7 @@
23
ENV["ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY"] = "andthisisanotheronetoothankyouuu"
24
ENV["ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT"] = "maybeyouarefeelingsaltyaboutthis"
25
ENV["PODPING_AUTH_TOKEN"] = "test_token"
26
-ENV['APPLE_PODCASTS_CONNECT_API_URL'] = "https://aardvark.prx.org/"
+ENV["APPLE_PODCASTS_CONNECT_API_URL"] = "https://aardvark.prx.org/"
ENV["RAILS_ENV"] ||= "test"
require_relative "../config/environment"
0 commit comments