RubyGems Navigation menu

flux_capacitor 0.1.2

[![Gem Version](https://badge.fury.io/rb/flux_capacitor.svg)](https://badge.fury.io/rb/flux_capacitor) # FluxCapacitor Sometimes you want to change a feature or deploy a new feature but doing so all at once might take down some service. Enter Flux Capacitor. It allows you to gradually include more historical content in the new feature while allowing all future content to start out with the new feature already live. ## Installation Add this line to your application's Gemfile: ```ruby gem 'flux_capacitor' ``` And then execute: $ bundle Or install it yourself as: $ gem install flux_capacitor ## Usage ```ruby require 'flux_capacitor' pivot = DateTime.parse('2017/08/14 00:00:00-000') # when do you want to start rolling out the feature oldest = MyModel.first.created_at # If you are using active record finding your oldest item is pretty easy # otherwise if you know the date of your first item, just use that end_point = DateTime.parse('2017/09/14') # The point where the feature is fully rolled out/safe to remove the Flux Capacitor. # This dictates how quickly the feature rolls out. If you are concerned about overloading a required service set this to farther in the future FEATURE_1_CAPACITOR = Flux::Capacitor.new(pivot, end_point, oldest) def controller_method model = MyModel.find(params[:id]) if FEATURE_1_CAPACITOR.travel_to?(model.created_at) use_new_feature else use_old_feature end end ``` If your feature doesn't map well to something where you have a date for each piece of content you can still use flux capacitor. It can also take strings and distribute them evenly over your rollout period using the murmur3 hashing algorithm. ```ruby require 'flux_capacitor' pivot = DateTime.parse('2017/08/14 00:00:00-000') # when do you want to start rolling out the feature end_point = DateTime.parse('2017/09/14') # when do you want the rollout to finish # NOTE: We don't need an oldest date when using strings FEATURE_1_CAPACITOR = Flux::Capacitor.new(pivot, end_point) def controller_method model = MyModel.find(params[:id]) if FEATURE_1_CAPACITOR.travel_to?(model.uuid) use_new_feature else use_old_feature end end ``` One note about using the string hashing method, new content could get the old feature for a while. ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/raphaeleidus/flux_capacitor.

Gemfile:
= Copy to clipboard Copied!

install:
=

Versions:

  1. 0.2.1 - July 26, 2017 (7.5 KB)
  2. 0.2.0 - July 26, 2017 (7.5 KB)
  3. 0.1.4 - July 06, 2017 (7.5 KB)
  4. 0.1.3 - June 22, 2017 (7.5 KB)
  5. 0.1.2 - June 22, 2017 (8 KB)
Show all versions (7 total)

Runtime Dependencies (1):

Development Dependencies (3):

bundler ~> 1.15
rake ~> 10.0
rspec ~> 3.0

Owners:

Authors:

  • Raphael Eidus

SHA 256 checksum:

fdf4d57b714c9949e1bb4da6e98da6d9cf9a883b2cacc8d48cab33af944d9697

Total downloads 13,798

For this version 1,671

Licenses:

N/A

Required Ruby Version: >= 0

Links: