Advertisement
Guest User

Untitled

a guest
Sep 12th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Vanity.playground.establish_connection :development
  2.  
  3. development:
  4. adapter: active_record
  5. active_record_adapter: mysql
  6. host: localhost
  7. database: database_name
  8. username: mysql_username
  9. password: mysql_password
  10.  
  11. if participates_in?(:my_experiment, variation_id: :my_variation)
  12. # variation specific code
  13. else
  14. # normal code
  15. end
  16.  
  17. if smoke_test?(:my_secret_test)
  18. # smoke test specific code
  19. else
  20. # normal code
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement