rollout_ui 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,22 +1,25 @@
1
- RolloutUI: A user interface for James Golick's rollout gem
1
+ RolloutUI: A slick way to rollout features in your web app.
2
2
  ==========================================================
3
3
 
4
+ What does it do?
5
+ ----------------
6
+
7
+ RolloutUI provides a zero-configuration user interface for James Golick's [rollout](https://github.com/jamesgolick/rollout). RolloutUI auto-detects features defined in rollout in your application.
8
+ It allows you to release features to groups, users or a percentage of your userbase through a nice interface rather than digging around in the console or modifying redis directly.
9
+
4
10
  It looks something like this:
5
11
  -----------------------------
6
12
 
7
13
  ![RolloutUI](https://img.skitch.com/20111018-kyqx954fxeny9tbjf6q3n7pymi.jpg)
8
14
 
9
- What does it do?
10
- ----------------
11
-
12
- It auto-detects rollout features you use in your application
13
- and allows you to roll them out through a nice interface rather
14
- than digging around in the console or modifying redis directly.
15
-
16
15
  Installing RolloutUI
17
16
  --------------------
18
17
 
19
- Add to your gemfile:
18
+ First, get [rollout](https://github.com/jamesgolick/rollout) set up and running on your app and define at least one feature.
19
+
20
+ Then you're ready to use RolloutUI.
21
+
22
+ Add it to your gemfile:
20
23
 
21
24
  gem "rollout_ui"
22
25
 
@@ -1,3 +1,3 @@
1
1
  module RolloutUi
2
- Version = "0.1.0"
2
+ Version = "0.2.0"
3
3
  end
@@ -3184,3 +3184,9 @@ Served asset /rollout_ui/dark_brick_wall.png - 304 Not Modified (5ms)
3184
3184
 
3185
3185
  Started GET "/assets/rollout_ui/chosen-sprite.png" for 127.0.0.1 at Tue Oct 18 00:33:26 -0400 2011
3186
3186
  Served asset /rollout_ui/chosen-sprite.png - 304 Not Modified (7ms)
3187
+ [2011-10-18 01:47:20] ERROR SignalException: SIGHUP
3188
+ /Users/jrallison/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/webrick/server.rb:91:in `select'
3189
+ [2011-10-18 01:47:41] ERROR SignalException: SIGTERM
3190
+ /Users/jrallison/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/webrick/server.rb:91:in `select'
3191
+ [2011-10-18 01:47:41] ERROR SignalException: SIGTERM
3192
+ /Users/jrallison/.rvm/rubies/ree-1.8.7-2010.02/lib/ruby/1.8/webrick/server.rb:91:in `select'
@@ -11113,3 +11113,124 @@ Started GET "/rollout/features" for 127.0.0.1 at Mon Oct 17 02:12:00 -0400 2011
11113
11113
  Processing by RolloutUi::FeaturesController#index as HTML
11114
11114
  Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (21.7ms)
11115
11115
  Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
11116
+
11117
+
11118
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11119
+ Processing by RolloutUi::FeaturesController#index as HTML
11120
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.9ms)
11121
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (30.9ms)
11122
+ Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.0ms)
11123
+
11124
+
11125
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11126
+ Processing by RolloutUi::FeaturesController#index as HTML
11127
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.1ms)
11128
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
11129
+
11130
+
11131
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11132
+ Processing by RolloutUi::FeaturesController#update as HTML
11133
+ Parameters: {"utf8"=>"\342\234\223", "id"=>"featureA", "percentage"=>"100"}
11134
+ Redirected to http://www.example.com/rollout/features
11135
+ Completed 302 Found in 1ms
11136
+
11137
+
11138
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11139
+ Processing by RolloutUi::FeaturesController#index as HTML
11140
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.6ms)
11141
+ Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
11142
+
11143
+
11144
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11145
+ Processing by RolloutUi::FeaturesController#index as HTML
11146
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (20.6ms)
11147
+ Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
11148
+
11149
+
11150
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11151
+ Processing by RolloutUi::FeaturesController#update as HTML
11152
+ Parameters: {"utf8"=>"\342\234\223", "id"=>"featureA", "percentage"=>"57"}
11153
+ Redirected to http://www.example.com/rollout/features
11154
+ Completed 302 Found in 1ms
11155
+
11156
+
11157
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11158
+ Processing by RolloutUi::FeaturesController#index as HTML
11159
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (26.9ms)
11160
+ Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms)
11161
+
11162
+
11163
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11164
+ Processing by RolloutUi::FeaturesController#index as HTML
11165
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (350.4ms)
11166
+ Completed 200 OK in 354ms (Views: 353.1ms | ActiveRecord: 0.0ms)
11167
+
11168
+
11169
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11170
+ Processing by RolloutUi::FeaturesController#update as HTML
11171
+ Parameters: {"groups"=>["beta_testers", ""], "utf8"=>"\342\234\223", "id"=>"featureA"}
11172
+ Redirected to http://www.example.com/rollout/features
11173
+ Completed 302 Found in 1ms
11174
+
11175
+
11176
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11177
+ Processing by RolloutUi::FeaturesController#index as HTML
11178
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (29.1ms)
11179
+ Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
11180
+
11181
+
11182
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11183
+ Processing by RolloutUi::FeaturesController#index as HTML
11184
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (24.4ms)
11185
+ Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.0ms)
11186
+
11187
+
11188
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11189
+ Processing by RolloutUi::FeaturesController#update as HTML
11190
+ Parameters: {"groups"=>["beta_testers", ""], "utf8"=>"\342\234\223", "id"=>"featureA"}
11191
+ Redirected to http://www.example.com/rollout/features
11192
+ Completed 302 Found in 1ms
11193
+
11194
+
11195
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11196
+ Processing by RolloutUi::FeaturesController#index as HTML
11197
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (24.0ms)
11198
+ Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms)
11199
+
11200
+
11201
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11202
+ Processing by RolloutUi::FeaturesController#index as HTML
11203
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.2ms)
11204
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms)
11205
+
11206
+
11207
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11208
+ Processing by RolloutUi::FeaturesController#update as HTML
11209
+ Parameters: {"utf8"=>"\342\234\223", "id"=>"featureA", "users"=>["5"]}
11210
+ Redirected to http://www.example.com/rollout/features
11211
+ Completed 302 Found in 1ms
11212
+
11213
+
11214
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11215
+ Processing by RolloutUi::FeaturesController#index as HTML
11216
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (25.2ms)
11217
+ Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
11218
+
11219
+
11220
+ Started GET "/rollout" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11221
+ Processing by RolloutUi::FeaturesController#index as HTML
11222
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (21.5ms)
11223
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
11224
+
11225
+
11226
+ Started PUT "/rollout/features/featureA" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11227
+ Processing by RolloutUi::FeaturesController#update as HTML
11228
+ Parameters: {"utf8"=>"\342\234\223", "id"=>"featureA", "users"=>["5"]}
11229
+ Redirected to http://www.example.com/rollout/features
11230
+ Completed 302 Found in 1ms
11231
+
11232
+
11233
+ Started GET "/rollout/features" for 127.0.0.1 at Wed Feb 22 17:54:27 -0500 2012
11234
+ Processing by RolloutUi::FeaturesController#index as HTML
11235
+ Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (24.7ms)
11236
+ Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollout_ui
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 1
8
+ - 2
9
9
  - 0
10
- version: 0.1.0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - John Allison
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-10-18 00:00:00 -04:00
18
+ date: 2012-02-22 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- hash: 23
29
+ hash: 19
30
30
  segments:
31
31
  - 1
32
+ - 1
32
33
  - 0
33
- - 0
34
- version: 1.0.0
34
+ version: 1.1.0
35
35
  type: :runtime
36
36
  version_requirements: *id001
37
37
  - !ruby/object:Gem::Dependency