Created
September 14, 2016 20:32
-
-
Save johnhamelink/d719cd56e04eda82806d0570fe83cdd2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SANDBOX_APN_CERT = File.read(Rails.root.join('db', 'fixtures', 'development', 'raw', 'ios_sandbox.pem')) | |
SANDBOX_GCM_KEY = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" | |
def create_or_update_by_id(klass, id, params) | |
if config = klass.find(id) rescue nil | |
config.update_attributes(params) | |
else | |
klass.create!(params) | |
end | |
end | |
create_or_update_by_id(Rpush::Apns::App, 1, { | |
name: 'Find a Player', | |
environment: 'sandbox', | |
certificate: SANDBOX_APN_CERT | |
}) | |
create_or_update_by_id(Rpush::Apns::App, 2, { | |
name: 'Find a Player', | |
environment: 'production', | |
certificate: SANDBOX_APN_CERT | |
}) | |
create_or_update_by_id(Rpush::Gcm::App, 3, { | |
name: 'Find a Player', | |
environment: 'sandbox', | |
auth_key: SANDBOX_GCM_KEY | |
}) | |
create_or_update_by_id(Rpush::Gcm::App, 4, { | |
name: 'Find a Player', | |
environment: 'production', | |
auth_key: SANDBOX_GCM_KEY | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment