Description
abstract_feature_branch is a Rails gem that enables developers to easily branch by abstraction as per this pattern:
http://paulhammant.com/blog/branch_by_abstraction.html
It is a productivity and fault tolerance enhancing team practice that has been utilized by professional software development teams at large corporations, such as Sears and Groupon.
It provides the ability to wrap blocks of code with an abstract feature branch name, and then specify in a configuration file which features to be switched on or off.
The goal is to build out upcoming features in the same source code repository branch, regardless of whether all are completed by the next release date or not, thus increasing team productivity by preventing integration delays. Developers then disable in-progress features until they are ready to be switched on in production, yet enable them locally and in staging environments for in-progress testing.
This gives developers the added benefit of being able to switch a feature off after release should big problems arise for a high risk feature.
abstract_feature_branch additionally supports DDD's pattern of Bounded Contexts by allowing developers to configure context-specific feature files if needed.
Abstract Feature Branch alternatives and similar gems
Based on the "Feature Flippers and A/B Testing" category.
Alternatively, view Abstract Feature Branch alternatives based on common mentions on social networks and blogs.
-
Flipflop your features
Flipflop lets you declare and manage feature flags in your Rails application.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Abstract Feature Branch or a related project?
README
Abstract Feature Branch
As Featured In
abstract_feature_branch is a Rails gem that enables developers to easily branch by abstraction as per this pattern: http://paulhammant.com/blog/branch_by_abstraction.html
It is a productivity and fault tolerance enhancing team practice that has been utilized by professional software development teams at large corporations, such as Sears and Groupon.
It provides the ability to wrap blocks of code with an abstract feature branch name, and then specify in a configuration file which features to be switched on or off.
The goal is to build out upcoming features in the same source code repository branch, regardless of whether all are completed by the next release date or not, thus increasing team productivity by preventing integration delays. Developers then disable in-progress features until they are ready to be switched on in production, yet enable them locally and in staging environments for in-progress testing.
This gives developers the added benefit of being able to switch a feature off after release should big problems arise for a high risk feature.
abstract_feature_branch additionally supports DDD's pattern of Bounded Contexts by allowing developers to configure context-specific feature files if needed.
Requirements
- Ruby >= 1.8.7 (click for a list of tested Ruby versions)
- (Optional) Rails ~> 4.0.0, ~> 3.0 or ~> 2.0
- (Optional) Redis server
Setup
Rails Application Use
- Configure Rubygem
- Rails (~> 4.0.0 or ~> 3.0): Add the following to Gemfile gem 'abstract_feature_branch', '1.2.2'
- Rails (~> 2.0): Add the following to config/environment.rb config.gem 'abstract_feature_branch', :version => '1.2.2'
- Generate config/initializers/abstract_feature_branch.rb, lib/tasks/abstract_feature_branch.rake, config/features.yml and config/features.local.yml in your Rails app directory by running rails g abstract_feature_branch:install
- (Optional) Generate config/features/[context_path].yml in your Rails app directory by running rails g abstract_feature_branch:context context_path (more details under instructions)
- (Optional) Customize configuration in config/initializers/abstract_feature_branch.rb (can be useful for changing location of feature files in Rails application, configuring Redis for per-user feature enablement, or troubleshooting a specific Rails environment feature configuration)
Ruby Application General Use
- gem install abstract_feature_branch -v 1.2.2
- Add code require 'abstract_feature_branch'
- Create config/features.yml under AbstractFeatureBranch.application_root and fill it with content similar to that of the sample config/features.yml mentioned under instructions.
- (Optional) Create config/features.local.yml under AbstractFeatureBranch.application_root (more details under instructions)
- (Optional) Create config/features/[context_path].yml under AbstractFeatureBranch.application_root (more details under instructions)
- (Optional) Add code AbstractFeatureBranch.application_root = "[your_application_path]" to configure the location of feature files (it defaults to '.')
- (Optional) Add code AbstractFeatureBranch.application_environment = "[your_application_environment]" (it defaults to 'development'). Alternatively, you can set ENV['APP_ENV'] before the require statement or an an external environment variable.
- (Optional) Add code AbstractFeatureBranch.logger = "[your_application_logger]" (it defaults to a new instance of Ruby Logger. Must use a logger with info and warn methods).
- (Optional) Add code AbstractFeatureBranch.cacheable = {[environment] => [true/false]} to indicate cacheability of loaded feature files for enhanced performance (it defaults to true for every environment other than development).
- (Optional) Add code AbstractFeatureBranch.load_application_features to pre-load application features for improved first-use performance
- (Optional) Add code AbstractFeatureBranch.user_features_storage = Redis.new(options) to configure Redis for per-user feature enablement
Instructions
config/features.yml contains the main configuration for the application features.
config/features.local.yml contains local overrides for the configuration, ignored by git, thus useful for temporary local feature switching for development/testing/troubleshooting purposes.
Optional context specific config/features/[context_path].yml contain feature configuration for specific application contexts. For example: admin, public, or even internal/wiki. Useful for better organization especially once config/features.yml grows too big (e.g. 20+ features)
Optional context specific config/features/[context_path].local.yml contain local overrides for context-specific feature configuration. These files are rarely necessary as any feature (even a context feature) can be overridden in config/features.local.yml, so these additional *.local.yml files are only recommended to be utilized once config/features.local.yml grows too big (e.g. 20+ features).
Here are the contents of the generated sample config/features.yml, which you can modify with your own features, each enabled (true) or disabled (false) per environment (e.g. production).
defaults: &defaults feature1: true feature2: true feature3: false feature4: per_user development: <<: *defaults test: <<: *defaults staging: <<: *defaults feature2: false production: <<: *defaults feature1: false feature2: false
Notice in the sample file how the feature "feature1" was configured as true (enabled) by default, but overridden as false (disabled) in production. This is a recommended practice.
- Declaratively feature branch logic to only run when feature1 is enabled:
multi-line logic:
feature_branch :feature1 do # perform logic end
single-line logic:
feature_branch(:feature1) { # perform logic }
Note that feature_branch returns nil and does not execute the block if the feature is disabled or non-existent.
- Imperatively check if a feature is enabled or not:
if feature_enabled?(:feature1) # perform logic else # perform alternate logic end
Note that feature_enabled? returns false if the feature is disabled and nil if the feature is non-existent (practically the same effect, but nil can sometimes be useful to detect if a feature is referenced).
Per-User Feature Enablement
It is possible to restrict enablement of features per specific users by setting a feature value to per_user.
- Use toggle_features_for_user in Ruby code to enable features per user ID (e.g. email address or database ID). This loads Redis client gem into memory and stores per-user feature configuration in Redis. In the example below, current_user is a method that provides the current signed in user (e.g. using Rails Devise library).
user_id = current_user.email AbstractFeatureBranch.toggle_features_for_user(user_id, :feature1 => true, :feature2 => false, :feature3 => true, :feature5 => true)
Use alternate version of feature_branch and feature_enabled? passing extra user_id argument
Examples:
feature_branch :feature1, current_user.email do # THIS WILL EXECUTE end if feature_enabled?(:feature2, current_user.email) # THIS ONE WILL NOT EXECUTE else # THIS ONE WILL EXECUTE end feature_branch :feature1, another_user.email do # THIS WILL NOT EXECUTE end if feature_enabled?(:feature2, another_user.email) # THIS ONE WILL EXECUTE (assuming feature2 is enabled in features.yml) else # THIS ONE WILL NOT EXECUTE end
Note:
If a feature is enabled as true or disabled as false in features.yml (or one of the overrides like features.local.yml or environment variable overrides), then it overrides toggled per-user restrictions, becoming enabled or disabled globally.
Recommendations
- Wrap routes in routes.rb with feature blocks to disable entire MVC feature elements by simply switching off the URL route to them. Example:
feature_branch :add_business_project do resources :projects end
- Wrap visual links to these routes in ERB views. Example:
<% feature_branch :add_business_project do %> <h2>Submit a Business</h2> <p> Please submit a business idea for review. </p> <ul> <% current_user.projects.each do |p| %> <li><%= link_to p.business_campaign_name, project_path(p) %></li> <% end %> </ul> <h4> <%= link_to('Start', new_project_path, :id => "business_background_invitation", :class => 'button') %> </h4> <% end %>
- In Rails 4, wrap newly added strong parameters in controllers for data security. Example:
params.require(:project).permit( feature_branch(:project_gallery) {:exclude_display}, :name, :description, :website )
- In Rails 4 and 3.1+ with the asset pipeline, wrap newly added CSS or JavaScript using .erb format (gotcha and alternative solution). Example (renamed projects.css.scss to projects.css.scss.erb and wrapped CSS with an abstract feature branch block):
<% feature_branch :project_gallery do %> .exclude_display { margin-left: auto; margin-right: auto; label { font-size: 1em; text-align: center; } height: 47px; } <% end %> label { font-size: 1.5em; margin-bottom: -15px; margin-top: 3px; display: inline; }
Once a feature has been released and switched on in production, and it has worked well for a while (e.g. for two consecutive releases), it is strongly recommended that its feature branching code is plucked out of the codebase to simplify and improve future maintainability given that it is no longer needed at that point.
Once config/features.yml grows too big (e.g. 20+ features), it is strongly recommended to split it into multiple context-specific feature files by utilizing the context generator mentioned above: rails g abstract_feature_branch:context context_path
When working on a new feature locally that the developer does not want others on the team to see yet, the feature can be enabled in config/features.local.yml only as it is git ignored while the feature is disabled in config/features.yml
When troubleshooting a deployed feature by simulating a non-development environment (e.g. staging or production) locally, the developer can disable it temporarily in config/features.local.yml (git ignored) under the non-development environment, perform tests on the feature, and then remove the local configuration once done.
Environment Variable Overrides
You can override feature configuration with environment variables by setting an environment variable with a name matching this convention (case-insensitive): ABSTRACT_FEATURE_BRANCH_[feature_name] and giving it the case-insensitive value "TRUE" or "FALSE"
Example:
export ABSTRACT_FEATURE_BRANCH_FEATURE1=TRUE rails s
The first command adds an environment variable override for feature1 that enables it regardless of any feature configuration, and the second command starts the rails server with feature1 enabled.
To remove an environment variable override, you may run:
unset ABSTRACT_FEATURE_BRANCH_FEATURE1 rails s
The benefits can be achieved more easily via config/features.local.yml mentioned above. However, environment variable overrides are implemented to support overriding feature configuration for a Heroku deployed application more easily.
Heroku
Environment variable overrides can be extremely helpful on Heroku as they allow developers to enable/disable features at runtime without a redeploy.
Examples
Enabling a new feature without a redeploy: heroku config:add ABSTRACT_FEATURE_BRANCH_FEATURE3=true -a heroku_application_name
Disabling a buggy recently deployed feature without a redeploy: heroku config:add ABSTRACT_FEATURE_BRANCH_FEATURE2=false -a heroku_application_name
Removing an environment variable override: heroku config:remove ABSTRACT_FEATURE_BRANCH_FEATURE2 -a heroku_application_name
Recommendation
It is recommended that you use environment variable overrides on Heroku only as an emergency or temporary measure. Afterward, make the change officially in config/features.yml, deploy, and remove the environment variable override for the long term.
Gotcha with abstract feature branching in CSS and JS files
If you've used abstract feature branching in CSS or JS files via ERB, setting environment variable overrides won't affect them as you need asset recompilation in addition to it, which can only be triggered by changing a CSS or JS file and redeploying on Heroku (even if it's just a minor change to force it). In any case, environment variable overrides have been recommended above as an emergency or temporary measure. If there is a need to rely on environment variable overrides to alter the style or JavaScript behavior of a page back and forth without a redeploy, one solution is to do additional abstract feature branching in HTML templates (e.g. ERB or HAML to link to different stylesheets and JS files, use different CSS classes, or invoke different JavaScript methods per branch of HTML for example.)
Feature Configuration Load Order
For better knowledge and clarity, here is the order in which feature configuration is loaded, with the latter sources overriding the former if overlap in features occurs:
- Context-specific feature files: config/features/*/.yml
- Main feature file: config/features.yml
- Context-specific local feature file overrides: config/features/*/.local.yml
- Main local feature file override: config/features.local.yml
- Environment variable overrides
Rails Initializer
Here is the content of the generated initializer (config/initializers/abstract_feature_branch.rb), which contains instructions on how to customize via dependency injection:
require 'redis' # Storage for user features, customizable over here. Right now, only a Redis client is supported. # The following example line works with Heroku Redis To Go while still operating on local Redis for local development # AbstractFeatureBranch.user_features_storage = Redis.new(:url => ENV['REDISTOGO_URL']) AbstractFeatureBranch.user_features_storage = Redis.new # Application root where config/features.yml or config/features/ is found AbstractFeatureBranch.application_root = Rails.root # Application environment (e.g. "development", "staging" or "production") AbstractFeatureBranch.application_environment = Rails.env.to_s # Abstract Feature Branch logger AbstractFeatureBranch.logger = Rails.logger # Cache feature files once read or re-read them at runtime on every use (helps development). # Defaults to true if environment not specified, except for development, which defaults to false. AbstractFeatureBranch.cacheable = { :development => false, :test => true, :staging => true, :production => true } # Pre-load application features to improve performance of first web-page hit AbstractFeatureBranch.load_application_features unless Rails.env.development?
TODO Document in Heroku (:url => ENV['REDISTOGO_URL'])
Rake Task
Abstract Feature Branch comes with a rake task to beautify feature files that have grown unorganized by sorting features by name and getting rid of extra empty lines. It does so per section, without affecting the order of the sections themselves.
For example, here is content before and after beautification.
Before:
defaults: &defaults gallery: true carousel: true third_party_integration: false caching: true development: <<: *defaults test: <<: *defaults caching: false staging: <<: *defaults third_party_integration: true caching: true production: <<: *defaults third_party_integration: false caching: false
After:
defaults: &defaults caching: true carousel: true gallery: true third_party_integration: false development: <<: *defaults test: <<: *defaults caching: false staging: <<: *defaults caching: true third_party_integration: true production: <<: *defaults caching: false third_party_integration: false
This is very useful in bigger applications that have scores of features since it allows a developer to quickly scan for alphabetical sorted feature names. Although file find is an alternative solution, having tidy organized feature names can help increase overall team productivity in the long term.
For Rails application use, the rake task is generated under lib/tasks/abstract_feature_branch.rake.
For Ruby application general use, here is the content of the rake task:
require 'abstract_feature_branch' namespace :abstract_feature_branch do desc "Beautify YAML of specified feature file via file_path argument or all feature files when no argument specified (config/features.yml, config/features.local.yml, and config/features/**/*.yml) by sorting features by name and eliminating extra empty lines" task :beautify_files, :file_path do |_, args| AbstractFeatureBranch::FileBeautifier.process(args[:file_path]) end end
The rake task may be invoked in a number of ways:
- rake abstract_feature_branch:beautify_files beautifies all feature files under [application_root]/config
- rake abstract_feature_branch:beautify_files[file_path] beautifies a single feature file
- rake abstract_feature_branch:beautify_files[directory_path] beautifies all feature files under directory path recursively
Note that the beautifier ignores comments at the top, but deletes entire line comments in the middle of a YAML file, so after invoking the rake task, verify that your feature file contents are to your satisfaction before committing the task changes.
Feature Branches vs Branch by Abstraction
Although feature branches and branching by abstraction are similar, there are different situations that recommend each approach.
Feature branching leverages your version control software (VCS) to create a branch that is independent of your main branch. Once you write your feature, you integrate it with the rest of your code base. Feature branching is ideal for developing features that can be completed within the one or two iterations. But it can become cumbersome with larger features due to the fact your code is isolated and quickly falls out of sync with your main branch. You will have to regularly rebase with your main branch or devote substantial time to resolving merge conflicts.
Branching by abstraction, on the other hand, is ideal for substantial features, i.e. ones which take many iterations to complete. This approach to branching takes place outside of your VCS. Instead, you build your feature, but wrap the code inside configurable flags. These configuration flags will allow for different behavior, depending on the runtime environment. For example, a feature would be set to "on" when your app runs in development mode, but "off" when running in "production" mode. This approach avoids the pain of constantly rebasing or resolving a myriad of merge conflict when you do attempt to integrate your feature into the larger app.
Contributing to abstract_feature_branch
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
- Fork the project.
- Start a feature/bugfix branch.
- Commit and push until you are happy with your contribution.
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Committers
Contributors
Copyright
Copyright (c) 2013-2018 Andy Maleh. See LICENSE.txt for further details.
*Note that all licence references and agreements mentioned in the Abstract Feature Branch README section above
are relevant to that project's source code only.