Skip to content

Instantly share code, notes, and snippets.

@brunapereira
Created December 14, 2019 22:52
Show Gist options
  • Save brunapereira/650d8bf3d086f9902351586eb235fd08 to your computer and use it in GitHub Desktop.
Save brunapereira/650d8bf3d086f9902351586eb235fd08 to your computer and use it in GitHub Desktop.
module Toggle
class TestToggleService
def show
if Flipper.enabled?(:test_feature)
'Enabled!'
else
'Disabled!'
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment