Skip to content

Instantly share code, notes, and snippets.

@tibastral
Forked from dblandin/.env
Last active March 17, 2016 15:11
Show Gist options
  • Save tibastral/1f67e61ed40e9b1db4f4 to your computer and use it in GitHub Desktop.
Save tibastral/1f67e61ed40e9b1db4f4 to your computer and use it in GitHub Desktop.
Managing RubyMotion environment variables
TESTFLIGHT_APP_TOKEN=90210
TESTFLIGHT_TEAM_TOKEN=90210
TESTFLIGHT_API_TOKEN=90210
BUGSENSE_API_KEY=90210
BUGSENSE_API_TOKEN=90210
DEVELOPMENT_CERTIFICATE_NAME="iPhone Developer: yourName"
DEVELOPMENT_PROVISIONING_PROFILE_PATH="/path/to/development.mobileprovision"
ADHOC_CERTIFICATE_NAME="iPhone Distribution: yourCompany, Inc."
ADHOC_PROVISIONING_PROFILE_PATH="/path/to/adhoc_distribution.mobileprovision"
RELEASE_CERTIFICATE_NAME="iPhone Distribution: yourCompany, Inc."
RELEASE_PROVISIONING_PROFILE_PATH="/path/to/store_distribution.mobileprovision"
Env = NSBundle.mainBundle.infoDictionary[:ENV]
source 'https://rubygems.org'
...
gem 'dotenv', '~> 0.9.0'
...
# -*- coding: utf-8 -*-
$:.unshift('/Library/RubyMotion/lib')
Motion::Project::App.setup do |app|
app.info_plist[:ENV] = Dotenv.load
app.testflight do |config|
config.api_token = ENV['TESTFLIGHT_API_TOKEN']
config.team_token = ENV['TESTFLIGHT_TEAM_TOKEN']
config.app_token = ENV['TESTFLIGHT_APP_TOKEN']
end
app.bugsense do |config|
config.api_key = ENV['BUGSENSE_API_KEY']
config.token = ENV['BUGSENSE_API_TOKEN']
end
end
class SomeClass
def activate_bugsense!
...
BugSenseController.sharedControllerWithBugSenseAPIKey(Env['BUGSENSE_API_KEY'])
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment