Date | Name | Reference |
---|---|---|
Feb 22nd 2017 | Darbster | 🎵 Napster |
Feb 23rd 2017 | Darbmeister | 🍔 Burgermeister |
Feb 24th 2017 | Darbo Swinney | 🏈 Dabo Swinney |
Feb 27th 2017 | Darbledore | 🎅 Albus Dumbledore |
Feb 28th 2017 | Darbtini on the rocks | 🍸 Martini on the rocks |
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
#test.rake | |
desc 'example rake test that only runs in dev and test' | |
namespace :test do | |
task :do_something do | |
if Rails.env.development? || Rails.env.test? | |
"do your stuff here" | |
end | |
end | |
end |
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
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" | |