rollout 2.1.0 → 2.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.circleci/config.yml +80 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +11 -0
- data/.travis.yml +13 -3
- data/Gemfile +3 -1
- data/Gemfile.lock +52 -27
- data/README.md +193 -0
- data/Rakefile +7 -0
- data/lib/rollout/version.rb +3 -1
- data/lib/rollout.rb +166 -72
- data/rollout.gemspec +26 -22
- data/spec/rollout_spec.rb +465 -95
- data/spec/spec_helper.rb +17 -7
- metadata +50 -39
- data/.document +0 -5
- data/README.rdoc +0 -130
- data/lib/rollout/legacy.rb +0 -134
- data/misc/check_rollout.rb +0 -16
- data/spec/legacy_spec.rb +0 -221
- /data/{spec/spec.opts → .rspec} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: acf240ab59dcfdebec335aee19df882f8936e7de5b7a0c347a3c28cfa8b3fc6d
|
4
|
+
data.tar.gz: 2ca7c2d7c761c6e539790421547b5e8eb82bbe8b56dca246975f6adc0773866d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc61fd463b60a94e85b5b141ad5fb7431f37249d9b899739b52524bd0fc28106135e039cbfe0130a0c35d0934b50339e426e38255516381636ec1ff226068e49
|
7
|
+
data.tar.gz: 5babd80ccaab8b4f7b4efeac63e5941709913014e5d5d37f71c5f8b04ae62d09a38e50f7f6236df8d09ce359384cb0d877452209a1b63b69284fd649bb49033c
|
@@ -0,0 +1,80 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
workflows:
|
4
|
+
main:
|
5
|
+
jobs:
|
6
|
+
- ruby26
|
7
|
+
- ruby25
|
8
|
+
- ruby24
|
9
|
+
- ruby23
|
10
|
+
|
11
|
+
executors:
|
12
|
+
ruby26:
|
13
|
+
docker:
|
14
|
+
- image: circleci/ruby:2.6
|
15
|
+
ruby25:
|
16
|
+
docker:
|
17
|
+
- image: circleci/ruby:2.5
|
18
|
+
ruby24:
|
19
|
+
docker:
|
20
|
+
- image: circleci/ruby:2.4
|
21
|
+
ruby23:
|
22
|
+
docker:
|
23
|
+
- image: circleci/ruby:2.3
|
24
|
+
|
25
|
+
commands:
|
26
|
+
test:
|
27
|
+
steps:
|
28
|
+
- restore_cache:
|
29
|
+
keys:
|
30
|
+
- bundler-{{ checksum "Gemfile.lock" }}
|
31
|
+
|
32
|
+
- run:
|
33
|
+
name: Bundle Install
|
34
|
+
command: bundle check --path vendor/bundle || bundle install --deployment
|
35
|
+
|
36
|
+
- save_cache:
|
37
|
+
key: bundler-{{ checksum "Gemfile.lock" }}
|
38
|
+
paths:
|
39
|
+
- vendor/bundle
|
40
|
+
|
41
|
+
- run:
|
42
|
+
name: Run rspec
|
43
|
+
command: |
|
44
|
+
bundle exec rspec --format documentation --format RspecJunitFormatter --out test_results/rspec.xml
|
45
|
+
|
46
|
+
jobs:
|
47
|
+
ruby26:
|
48
|
+
executor: ruby26
|
49
|
+
steps:
|
50
|
+
- checkout
|
51
|
+
- test
|
52
|
+
|
53
|
+
- run:
|
54
|
+
name: Report Test Coverage
|
55
|
+
command: |
|
56
|
+
wget https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -O cc-test-reporter
|
57
|
+
chmod +x cc-test-reporter
|
58
|
+
./cc-test-reporter format-coverage -t simplecov -o coverage/codeclimate.json coverage/.resultset.json
|
59
|
+
./cc-test-reporter upload-coverage -i coverage/codeclimate.json
|
60
|
+
|
61
|
+
- store_test_results:
|
62
|
+
path: test_results
|
63
|
+
|
64
|
+
ruby25:
|
65
|
+
executor: ruby25
|
66
|
+
steps:
|
67
|
+
- checkout
|
68
|
+
- test
|
69
|
+
|
70
|
+
ruby24:
|
71
|
+
executor: ruby24
|
72
|
+
steps:
|
73
|
+
- checkout
|
74
|
+
- test
|
75
|
+
|
76
|
+
ruby23:
|
77
|
+
executor: ruby23
|
78
|
+
steps:
|
79
|
+
- checkout
|
80
|
+
- test
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/.travis.yml
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
language: ruby
|
2
|
+
cache: bundler
|
3
|
+
sudo: false
|
2
4
|
services:
|
3
5
|
- redis-server
|
4
6
|
rvm:
|
7
|
+
- 2.6
|
8
|
+
- 2.5
|
9
|
+
- 2.4
|
10
|
+
- 2.3
|
11
|
+
- 2.2
|
5
12
|
- 2.1
|
6
|
-
- 2.0
|
7
|
-
|
8
|
-
-
|
13
|
+
- 2.0
|
14
|
+
env:
|
15
|
+
- USE_REAL_REDIS=true
|
16
|
+
gemfile:
|
17
|
+
- gemfiles/redis_3.gemfile
|
18
|
+
- gemfiles/redis_4.gemfile
|
9
19
|
script:
|
10
20
|
- bundle exec rspec
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,40 +1,65 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rollout (2.
|
4
|
+
rollout (2.4.5)
|
5
|
+
redis (~> 4.0)
|
5
6
|
|
6
7
|
GEM
|
7
8
|
remote: https://rubygems.org/
|
8
9
|
specs:
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
redis (
|
21
|
-
rspec (
|
22
|
-
rspec-core (~>
|
23
|
-
rspec-expectations (~>
|
24
|
-
rspec-mocks (~>
|
25
|
-
rspec-core (
|
26
|
-
|
27
|
-
|
28
|
-
|
10
|
+
ast (2.4.0)
|
11
|
+
diff-lcs (1.3)
|
12
|
+
docile (1.3.2)
|
13
|
+
fakeredis (0.7.0)
|
14
|
+
redis (>= 3.2, < 5.0)
|
15
|
+
jaro_winkler (1.5.3)
|
16
|
+
json (2.2.0)
|
17
|
+
parallel (1.17.0)
|
18
|
+
parser (2.6.3.0)
|
19
|
+
ast (~> 2.4.0)
|
20
|
+
rainbow (3.0.0)
|
21
|
+
redis (4.1.2)
|
22
|
+
rspec (3.8.0)
|
23
|
+
rspec-core (~> 3.8.0)
|
24
|
+
rspec-expectations (~> 3.8.0)
|
25
|
+
rspec-mocks (~> 3.8.0)
|
26
|
+
rspec-core (3.8.2)
|
27
|
+
rspec-support (~> 3.8.0)
|
28
|
+
rspec-expectations (3.8.4)
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
+
rspec-support (~> 3.8.0)
|
31
|
+
rspec-mocks (3.8.1)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.8.0)
|
34
|
+
rspec-support (3.8.2)
|
35
|
+
rspec_junit_formatter (0.4.1)
|
36
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
37
|
+
rubocop (0.72.0)
|
38
|
+
jaro_winkler (~> 1.5.1)
|
39
|
+
parallel (~> 1.10)
|
40
|
+
parser (>= 2.6)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
44
|
+
ruby-progressbar (1.10.1)
|
45
|
+
simplecov (0.16.1)
|
46
|
+
docile (~> 1.1)
|
47
|
+
json (>= 1.8, < 3)
|
48
|
+
simplecov-html (~> 0.10.0)
|
49
|
+
simplecov-html (0.10.2)
|
50
|
+
unicode-display_width (1.6.0)
|
29
51
|
|
30
52
|
PLATFORMS
|
31
53
|
ruby
|
32
54
|
|
33
55
|
DEPENDENCIES
|
34
|
-
|
35
|
-
|
36
|
-
jeweler (~> 1.6.4)
|
37
|
-
mocha (= 0.9.8)
|
38
|
-
redis
|
56
|
+
bundler (~> 1.17)
|
57
|
+
fakeredis
|
39
58
|
rollout!
|
40
|
-
rspec (~>
|
59
|
+
rspec (~> 3.0)
|
60
|
+
rspec_junit_formatter (~> 0.4)
|
61
|
+
rubocop (~> 0.71)
|
62
|
+
simplecov (~> 0.16)
|
63
|
+
|
64
|
+
BUNDLED WITH
|
65
|
+
1.17.2
|
data/README.md
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
# rollout
|
2
|
+
|
3
|
+
Fast feature flags based on Redis.
|
4
|
+
|
5
|
+
[](https://badge.fury.io/rb/rollout)
|
6
|
+
[](https://circleci.com/gh/fetlife/rollout)
|
7
|
+
[](https://codeclimate.com/github/FetLife/rollout)
|
8
|
+
[](https://codeclimate.com/github/FetLife/rollout/coverage)
|
9
|
+
|
10
|
+
## Install it
|
11
|
+
|
12
|
+
```bash
|
13
|
+
gem install rollout
|
14
|
+
```
|
15
|
+
|
16
|
+
## How it works
|
17
|
+
|
18
|
+
Initialize a rollout object. I assign it to a global var.
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
require 'redis'
|
22
|
+
|
23
|
+
$redis = Redis.new
|
24
|
+
$rollout = Rollout.new($redis)
|
25
|
+
```
|
26
|
+
|
27
|
+
Update data specific to a feature:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
$rollout.set_feature_data(:chat, description: 'foo', release_date: 'bar', whatever: 'baz')
|
31
|
+
```
|
32
|
+
|
33
|
+
Check whether a feature is active for a particular user:
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
$rollout.active?(:chat, User.first) # => true/false
|
37
|
+
```
|
38
|
+
|
39
|
+
Check whether a feature is active globally:
|
40
|
+
|
41
|
+
```ruby
|
42
|
+
$rollout.active?(:chat)
|
43
|
+
```
|
44
|
+
|
45
|
+
You can activate features using a number of different mechanisms.
|
46
|
+
|
47
|
+
## Groups
|
48
|
+
|
49
|
+
Rollout ships with one group by default: "all", which does exactly what it
|
50
|
+
sounds like.
|
51
|
+
|
52
|
+
You can activate the all group for the chat feature like this:
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
$rollout.activate_group(:chat, :all)
|
56
|
+
```
|
57
|
+
|
58
|
+
You might also want to define your own groups. We have one for our caretakers:
|
59
|
+
|
60
|
+
```ruby
|
61
|
+
$rollout.define_group(:caretakers) do |user|
|
62
|
+
user.caretaker?
|
63
|
+
end
|
64
|
+
```
|
65
|
+
|
66
|
+
You can activate multiple groups per feature.
|
67
|
+
|
68
|
+
Deactivate groups like this:
|
69
|
+
|
70
|
+
```ruby
|
71
|
+
$rollout.deactivate_group(:chat, :all)
|
72
|
+
```
|
73
|
+
|
74
|
+
Groups need to be defined every time your app starts. The logic is not persisted
|
75
|
+
anywhere.
|
76
|
+
|
77
|
+
## Specific Users
|
78
|
+
|
79
|
+
You might want to let a specific user into a beta test or something. If that
|
80
|
+
user isn't part of an existing group, you can let them in specifically:
|
81
|
+
|
82
|
+
```ruby
|
83
|
+
$rollout.activate_user(:chat, @user)
|
84
|
+
```
|
85
|
+
|
86
|
+
Deactivate them like this:
|
87
|
+
|
88
|
+
```ruby
|
89
|
+
$rollout.deactivate_user(:chat, @user)
|
90
|
+
```
|
91
|
+
|
92
|
+
## User Percentages
|
93
|
+
|
94
|
+
If you're rolling out a new feature, you might want to test the waters by
|
95
|
+
slowly enabling it for a percentage of your users.
|
96
|
+
|
97
|
+
```ruby
|
98
|
+
$rollout.activate_percentage(:chat, 20)
|
99
|
+
```
|
100
|
+
|
101
|
+
The algorithm for determining which users get let in is this:
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
CRC32(user.id) < (2**32 - 1) / 100.0 * percentage
|
105
|
+
```
|
106
|
+
|
107
|
+
So, for 20%, users 0, 1, 10, 11, 20, 21, etc would be allowed in. Those users
|
108
|
+
would remain in as the percentage increases.
|
109
|
+
|
110
|
+
Deactivate all percentages like this:
|
111
|
+
|
112
|
+
```ruby
|
113
|
+
$rollout.deactivate_percentage(:chat)
|
114
|
+
```
|
115
|
+
|
116
|
+
_Note that activating a feature for 100% of users will also make it active
|
117
|
+
"globally". That is when calling Rollout#active? without a user object._
|
118
|
+
|
119
|
+
In some cases you might want to have a feature activated for a random set of
|
120
|
+
users. It can come specially handy when using Rollout for split tests.
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
$rollout = Rollout.new($redis, randomize_percentage: true)
|
124
|
+
```
|
125
|
+
|
126
|
+
When on `randomize_percentage` will make sure that 50% of users for feature A
|
127
|
+
are selected independently from users for feature B.
|
128
|
+
|
129
|
+
## Global actions
|
130
|
+
|
131
|
+
While groups can come in handy, the actual global setter for a feature does not require a group to be passed.
|
132
|
+
|
133
|
+
```ruby
|
134
|
+
$rollout.activate(:chat)
|
135
|
+
```
|
136
|
+
|
137
|
+
In that case you can check the global availability of a feature using the following
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
$rollout.active?(:chat)
|
141
|
+
```
|
142
|
+
|
143
|
+
And if something is wrong you can set a feature off for everybody using
|
144
|
+
|
145
|
+
Deactivate everybody at once:
|
146
|
+
|
147
|
+
```ruby
|
148
|
+
$rollout.deactivate(:chat)
|
149
|
+
```
|
150
|
+
|
151
|
+
For many of our features, we keep track of error rates using redis, and
|
152
|
+
deactivate them automatically when a threshold is reached to prevent service
|
153
|
+
failures from cascading. See https://github.com/jamesgolick/degrade for the
|
154
|
+
failure detection code.
|
155
|
+
|
156
|
+
## Namespacing
|
157
|
+
|
158
|
+
Rollout separates its keys from other keys in the data store using the
|
159
|
+
"feature" keyspace.
|
160
|
+
|
161
|
+
If you're using redis, you can namespace keys further to support multiple
|
162
|
+
environments by using the
|
163
|
+
[redis-namespace](https://github.com/resque/redis-namespace) gem.
|
164
|
+
|
165
|
+
```ruby
|
166
|
+
$ns = Redis::Namespace.new(Rails.env, redis: $redis)
|
167
|
+
$rollout = Rollout.new($ns)
|
168
|
+
$rollout.activate_group(:chat, :all)
|
169
|
+
```
|
170
|
+
|
171
|
+
This example would use the "development:feature:chat:groups" key.
|
172
|
+
|
173
|
+
## Frontend / UI
|
174
|
+
|
175
|
+
* [Rollout-Dashboard](https://github.com/fiverr/rollout_dashboard/)
|
176
|
+
|
177
|
+
## Implementations in other languages
|
178
|
+
|
179
|
+
* Python: https://github.com/asenchi/proclaim
|
180
|
+
* PHP: https://github.com/opensoft/rollout
|
181
|
+
* Clojure: https://github.com/yeller/shoutout
|
182
|
+
* Perl: https://metacpan.org/pod/Toggle
|
183
|
+
|
184
|
+
|
185
|
+
## Contributors
|
186
|
+
|
187
|
+
* James Golick - Creator - https://github.com/jamesgolick
|
188
|
+
* Eric Rafaloff - Maintainer - https://github.com/EricR
|
189
|
+
|
190
|
+
|
191
|
+
## Copyright
|
192
|
+
|
193
|
+
Copyright (c) 2010-InfinityAndBeyond BitLove, Inc. See LICENSE for details.
|
data/Rakefile
ADDED
data/lib/rollout/version.rb
CHANGED