- PostHog Project Key:
phc_tUr6ru3ra8xvPyYhrpqkPxzdKWESzutzwQarijsvepXH - API Host:
https://us.i.posthog.com - Environment: Production only
- EU Exclusion: Uses geojs.io to detect user country; PostHog is not loaded for EU/EEA/UK users (GDPR). Country is cached in localStorage.
- Safe wrapper: All event capture calls use
posthogCapture()which no-ops if PostHog is not loaded.
This file contains hidden or 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
| class Foo | |
| def bar | |
| yield | |
| puts 'after yield' | |
| end | |
| end | |
| class ExecuteFoo | |
| def initialize | |
| @foo = Foo.new |