Skip to content

Instantly share code, notes, and snippets.

@therako
Created September 13, 2015 05:34
Show Gist options
  • Save therako/65d919de2dadcf64e01a to your computer and use it in GitHub Desktop.
Save therako/65d919de2dadcf64e01a to your computer and use it in GitHub Desktop.
Feature Toggle in Rails
class FeatureFlag
def self.allow_comments?
MomConfig['COMMENTS_SECTION_AVAILABLE'] == 'true'
end
end
Application.routes.draw do
root 'pages#welcome'
get '/welcome' => 'pages#welcome'
if FeatureFlag.allow_comments?
get '/comments' => 'comments#all'
get '/comment' => 'comments#new'
post '/comment' => 'comments#create'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment