Skip to content

Instantly share code, notes, and snippets.

@monkbroc
Last active August 29, 2015 14:13
Show Gist options
  • Save monkbroc/f0bde3d45eb11df923c5 to your computer and use it in GitHub Desktop.
Save monkbroc/f0bde3d45eb11df923c5 to your computer and use it in GitHub Desktop.
# Replace this
Pusher.app_id = ENV['PUSHER_APP_ID']
Pusher.key = ENV['PUSHER_KEY']
Pusher.secret = ENV['PUSHER_SECRET']
# By this
Nenv :pusher do |p|
Pusher.app_id = p.app_id
Pusher.key = p.key
Pusher.secret = p.secret
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment