ab_panel 0.0.2 → 0.0.3
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.
- data/README.md +1 -1
- data/ab_panel.gemspec +2 -1
- data/example/.gitignore +15 -0
- data/example/Gemfile +40 -0
- data/example/README.rdoc +261 -0
- data/example/Rakefile +7 -0
- data/example/app/assets/images/rails.png +0 -0
- data/example/app/assets/javascripts/application.js +15 -0
- data/example/app/assets/javascripts/posts.js.coffee +3 -0
- data/example/app/assets/stylesheets/application.css +13 -0
- data/example/app/assets/stylesheets/posts.css.scss +3 -0
- data/example/app/assets/stylesheets/scaffolds.css.scss +69 -0
- data/example/app/controllers/application_controller.rb +15 -0
- data/example/app/controllers/posts_controller.rb +85 -0
- data/example/app/helpers/application_helper.rb +2 -0
- data/example/app/helpers/posts_helper.rb +2 -0
- data/example/app/mailers/.gitkeep +0 -0
- data/example/app/models/.gitkeep +0 -0
- data/example/app/models/post.rb +3 -0
- data/example/app/views/layouts/application.html.erb +14 -0
- data/example/app/views/posts/_form.html.erb +25 -0
- data/example/app/views/posts/edit.html.erb +6 -0
- data/example/app/views/posts/index.html.erb +25 -0
- data/example/app/views/posts/new.html.erb +5 -0
- data/example/app/views/posts/show.html.erb +15 -0
- data/example/config/ab_panel.yml +10 -0
- data/example/config/application.rb +62 -0
- data/example/config/boot.rb +6 -0
- data/example/config/database.yml +25 -0
- data/example/config/environment.rb +5 -0
- data/example/config/environments/development.rb +37 -0
- data/example/config/environments/production.rb +67 -0
- data/example/config/environments/test.rb +37 -0
- data/example/config/initializers/backtrace_silencers.rb +7 -0
- data/example/config/initializers/inflections.rb +15 -0
- data/example/config/initializers/mime_types.rb +5 -0
- data/example/config/initializers/mixpanel_middleware.rb +2 -0
- data/example/config/initializers/secret_token.rb +7 -0
- data/example/config/initializers/session_store.rb +8 -0
- data/example/config/initializers/wrap_parameters.rb +14 -0
- data/example/config/locales/en.yml +5 -0
- data/example/config/mixpanel.yml +3 -0
- data/example/config/routes.rb +60 -0
- data/example/config.ru +4 -0
- data/example/db/migrate/20130909131957_create_posts.rb +10 -0
- data/example/db/schema.rb +23 -0
- data/example/db/seeds.rb +7 -0
- data/example/lib/assets/.gitkeep +0 -0
- data/example/lib/tasks/.gitkeep +0 -0
- data/example/log/.gitkeep +0 -0
- data/example/public/404.html +26 -0
- data/example/public/422.html +26 -0
- data/example/public/500.html +25 -0
- data/example/public/favicon.ico +0 -0
- data/example/public/index.html +241 -0
- data/example/public/robots.txt +5 -0
- data/example/script/rails +6 -0
- data/example/test/fixtures/.gitkeep +0 -0
- data/example/test/fixtures/posts.yml +9 -0
- data/example/test/functional/.gitkeep +0 -0
- data/example/test/functional/posts_controller_test.rb +49 -0
- data/example/test/integration/.gitkeep +0 -0
- data/example/test/performance/browsing_test.rb +12 -0
- data/example/test/test_helper.rb +13 -0
- data/example/test/unit/.gitkeep +0 -0
- data/example/test/unit/helpers/posts_helper_test.rb +4 -0
- data/example/test/unit/post_test.rb +7 -0
- data/example/vendor/assets/javascripts/.gitkeep +0 -0
- data/example/vendor/assets/stylesheets/.gitkeep +0 -0
- data/example/vendor/plugins/.gitkeep +0 -0
- data/lib/ab_panel/controller_additions.rb +21 -10
- data/lib/ab_panel/mixpanel.rb +6 -13
- data/lib/ab_panel/version.rb +1 -1
- data/lib/ab_panel.rb +17 -9
- metadata +156 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ab_panel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-09-
|
|
12
|
+
date: 2013-09-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -91,6 +91,22 @@ dependencies:
|
|
|
91
91
|
- - ! '>='
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: debugger
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - ! '>='
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '0'
|
|
102
|
+
type: :development
|
|
103
|
+
prerelease: false
|
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
106
|
+
requirements:
|
|
107
|
+
- - ! '>='
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
94
110
|
- !ruby/object:Gem::Dependency
|
|
95
111
|
name: mixpanel
|
|
96
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -120,6 +136,74 @@ files:
|
|
|
120
136
|
- README.md
|
|
121
137
|
- Rakefile
|
|
122
138
|
- ab_panel.gemspec
|
|
139
|
+
- example/.gitignore
|
|
140
|
+
- example/Gemfile
|
|
141
|
+
- example/README.rdoc
|
|
142
|
+
- example/Rakefile
|
|
143
|
+
- example/app/assets/images/rails.png
|
|
144
|
+
- example/app/assets/javascripts/application.js
|
|
145
|
+
- example/app/assets/javascripts/posts.js.coffee
|
|
146
|
+
- example/app/assets/stylesheets/application.css
|
|
147
|
+
- example/app/assets/stylesheets/posts.css.scss
|
|
148
|
+
- example/app/assets/stylesheets/scaffolds.css.scss
|
|
149
|
+
- example/app/controllers/application_controller.rb
|
|
150
|
+
- example/app/controllers/posts_controller.rb
|
|
151
|
+
- example/app/helpers/application_helper.rb
|
|
152
|
+
- example/app/helpers/posts_helper.rb
|
|
153
|
+
- example/app/mailers/.gitkeep
|
|
154
|
+
- example/app/models/.gitkeep
|
|
155
|
+
- example/app/models/post.rb
|
|
156
|
+
- example/app/views/layouts/application.html.erb
|
|
157
|
+
- example/app/views/posts/_form.html.erb
|
|
158
|
+
- example/app/views/posts/edit.html.erb
|
|
159
|
+
- example/app/views/posts/index.html.erb
|
|
160
|
+
- example/app/views/posts/new.html.erb
|
|
161
|
+
- example/app/views/posts/show.html.erb
|
|
162
|
+
- example/config.ru
|
|
163
|
+
- example/config/ab_panel.yml
|
|
164
|
+
- example/config/application.rb
|
|
165
|
+
- example/config/boot.rb
|
|
166
|
+
- example/config/database.yml
|
|
167
|
+
- example/config/environment.rb
|
|
168
|
+
- example/config/environments/development.rb
|
|
169
|
+
- example/config/environments/production.rb
|
|
170
|
+
- example/config/environments/test.rb
|
|
171
|
+
- example/config/initializers/backtrace_silencers.rb
|
|
172
|
+
- example/config/initializers/inflections.rb
|
|
173
|
+
- example/config/initializers/mime_types.rb
|
|
174
|
+
- example/config/initializers/mixpanel_middleware.rb
|
|
175
|
+
- example/config/initializers/secret_token.rb
|
|
176
|
+
- example/config/initializers/session_store.rb
|
|
177
|
+
- example/config/initializers/wrap_parameters.rb
|
|
178
|
+
- example/config/locales/en.yml
|
|
179
|
+
- example/config/mixpanel.yml
|
|
180
|
+
- example/config/routes.rb
|
|
181
|
+
- example/db/migrate/20130909131957_create_posts.rb
|
|
182
|
+
- example/db/schema.rb
|
|
183
|
+
- example/db/seeds.rb
|
|
184
|
+
- example/lib/assets/.gitkeep
|
|
185
|
+
- example/lib/tasks/.gitkeep
|
|
186
|
+
- example/log/.gitkeep
|
|
187
|
+
- example/public/404.html
|
|
188
|
+
- example/public/422.html
|
|
189
|
+
- example/public/500.html
|
|
190
|
+
- example/public/favicon.ico
|
|
191
|
+
- example/public/index.html
|
|
192
|
+
- example/public/robots.txt
|
|
193
|
+
- example/script/rails
|
|
194
|
+
- example/test/fixtures/.gitkeep
|
|
195
|
+
- example/test/fixtures/posts.yml
|
|
196
|
+
- example/test/functional/.gitkeep
|
|
197
|
+
- example/test/functional/posts_controller_test.rb
|
|
198
|
+
- example/test/integration/.gitkeep
|
|
199
|
+
- example/test/performance/browsing_test.rb
|
|
200
|
+
- example/test/test_helper.rb
|
|
201
|
+
- example/test/unit/.gitkeep
|
|
202
|
+
- example/test/unit/helpers/posts_helper_test.rb
|
|
203
|
+
- example/test/unit/post_test.rb
|
|
204
|
+
- example/vendor/assets/javascripts/.gitkeep
|
|
205
|
+
- example/vendor/assets/stylesheets/.gitkeep
|
|
206
|
+
- example/vendor/plugins/.gitkeep
|
|
123
207
|
- lib/ab_panel.rb
|
|
124
208
|
- lib/ab_panel/config.rb
|
|
125
209
|
- lib/ab_panel/controller_additions.rb
|
|
@@ -146,7 +230,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
146
230
|
version: '0'
|
|
147
231
|
segments:
|
|
148
232
|
- 0
|
|
149
|
-
hash:
|
|
233
|
+
hash: -4159639941527965212
|
|
150
234
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
235
|
none: false
|
|
152
236
|
requirements:
|
|
@@ -155,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
155
239
|
version: '0'
|
|
156
240
|
segments:
|
|
157
241
|
- 0
|
|
158
|
-
hash:
|
|
242
|
+
hash: -4159639941527965212
|
|
159
243
|
requirements: []
|
|
160
244
|
rubyforge_project:
|
|
161
245
|
rubygems_version: 1.8.23
|
|
@@ -163,6 +247,74 @@ signing_key:
|
|
|
163
247
|
specification_version: 3
|
|
164
248
|
summary: Run A/B test experiments on your Rails 3+ site using Mixpanel as a backend.
|
|
165
249
|
test_files:
|
|
250
|
+
- example/.gitignore
|
|
251
|
+
- example/Gemfile
|
|
252
|
+
- example/README.rdoc
|
|
253
|
+
- example/Rakefile
|
|
254
|
+
- example/app/assets/images/rails.png
|
|
255
|
+
- example/app/assets/javascripts/application.js
|
|
256
|
+
- example/app/assets/javascripts/posts.js.coffee
|
|
257
|
+
- example/app/assets/stylesheets/application.css
|
|
258
|
+
- example/app/assets/stylesheets/posts.css.scss
|
|
259
|
+
- example/app/assets/stylesheets/scaffolds.css.scss
|
|
260
|
+
- example/app/controllers/application_controller.rb
|
|
261
|
+
- example/app/controllers/posts_controller.rb
|
|
262
|
+
- example/app/helpers/application_helper.rb
|
|
263
|
+
- example/app/helpers/posts_helper.rb
|
|
264
|
+
- example/app/mailers/.gitkeep
|
|
265
|
+
- example/app/models/.gitkeep
|
|
266
|
+
- example/app/models/post.rb
|
|
267
|
+
- example/app/views/layouts/application.html.erb
|
|
268
|
+
- example/app/views/posts/_form.html.erb
|
|
269
|
+
- example/app/views/posts/edit.html.erb
|
|
270
|
+
- example/app/views/posts/index.html.erb
|
|
271
|
+
- example/app/views/posts/new.html.erb
|
|
272
|
+
- example/app/views/posts/show.html.erb
|
|
273
|
+
- example/config.ru
|
|
274
|
+
- example/config/ab_panel.yml
|
|
275
|
+
- example/config/application.rb
|
|
276
|
+
- example/config/boot.rb
|
|
277
|
+
- example/config/database.yml
|
|
278
|
+
- example/config/environment.rb
|
|
279
|
+
- example/config/environments/development.rb
|
|
280
|
+
- example/config/environments/production.rb
|
|
281
|
+
- example/config/environments/test.rb
|
|
282
|
+
- example/config/initializers/backtrace_silencers.rb
|
|
283
|
+
- example/config/initializers/inflections.rb
|
|
284
|
+
- example/config/initializers/mime_types.rb
|
|
285
|
+
- example/config/initializers/mixpanel_middleware.rb
|
|
286
|
+
- example/config/initializers/secret_token.rb
|
|
287
|
+
- example/config/initializers/session_store.rb
|
|
288
|
+
- example/config/initializers/wrap_parameters.rb
|
|
289
|
+
- example/config/locales/en.yml
|
|
290
|
+
- example/config/mixpanel.yml
|
|
291
|
+
- example/config/routes.rb
|
|
292
|
+
- example/db/migrate/20130909131957_create_posts.rb
|
|
293
|
+
- example/db/schema.rb
|
|
294
|
+
- example/db/seeds.rb
|
|
295
|
+
- example/lib/assets/.gitkeep
|
|
296
|
+
- example/lib/tasks/.gitkeep
|
|
297
|
+
- example/log/.gitkeep
|
|
298
|
+
- example/public/404.html
|
|
299
|
+
- example/public/422.html
|
|
300
|
+
- example/public/500.html
|
|
301
|
+
- example/public/favicon.ico
|
|
302
|
+
- example/public/index.html
|
|
303
|
+
- example/public/robots.txt
|
|
304
|
+
- example/script/rails
|
|
305
|
+
- example/test/fixtures/.gitkeep
|
|
306
|
+
- example/test/fixtures/posts.yml
|
|
307
|
+
- example/test/functional/.gitkeep
|
|
308
|
+
- example/test/functional/posts_controller_test.rb
|
|
309
|
+
- example/test/integration/.gitkeep
|
|
310
|
+
- example/test/performance/browsing_test.rb
|
|
311
|
+
- example/test/test_helper.rb
|
|
312
|
+
- example/test/unit/.gitkeep
|
|
313
|
+
- example/test/unit/helpers/posts_helper_test.rb
|
|
314
|
+
- example/test/unit/post_test.rb
|
|
315
|
+
- example/vendor/assets/javascripts/.gitkeep
|
|
316
|
+
- example/vendor/assets/stylesheets/.gitkeep
|
|
317
|
+
- example/vendor/plugins/.gitkeep
|
|
166
318
|
- spec/ab_panel/controller_additions_spec.rb
|
|
167
319
|
- spec/ab_panel_spec.rb
|
|
168
320
|
- spec/spec_helper.rb
|