split 2.2.0 → 3.1.1

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: split
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-11 00:00:00.000000000 Z
11
+ date: 2017-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.10'
61
+ version: '1.14'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.10'
68
+ version: '1.14'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: simplecov
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '11.1'
103
+ version: '12'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '11.1'
110
+ version: '12'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rspec
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -172,14 +172,15 @@ files:
172
172
  - LICENSE
173
173
  - README.md
174
174
  - Rakefile
175
- - gemfiles/4.1.gemfile
176
175
  - gemfiles/4.2.gemfile
177
176
  - gemfiles/5.0.gemfile
177
+ - gemfiles/5.1.gemfile
178
178
  - lib/split.rb
179
- - lib/split/algorithms.rb
179
+ - lib/split/algorithms/block_randomization.rb
180
180
  - lib/split/algorithms/weighted_sample.rb
181
181
  - lib/split/algorithms/whiplash.rb
182
182
  - lib/split/alternative.rb
183
+ - lib/split/combined_experiments_helper.rb
183
184
  - lib/split/configuration.rb
184
185
  - lib/split/dashboard.rb
185
186
  - lib/split/dashboard/helpers.rb
@@ -198,7 +199,6 @@ files:
198
199
  - lib/split/exceptions.rb
199
200
  - lib/split/experiment.rb
200
201
  - lib/split/experiment_catalog.rb
201
- - lib/split/extensions.rb
202
202
  - lib/split/extensions/string.rb
203
203
  - lib/split/goals_collection.rb
204
204
  - lib/split/helper.rb
@@ -213,9 +213,11 @@ files:
213
213
  - lib/split/user.rb
214
214
  - lib/split/version.rb
215
215
  - lib/split/zscore.rb
216
+ - spec/algorithms/block_randomization_spec.rb
216
217
  - spec/algorithms/weighted_sample_spec.rb
217
218
  - spec/algorithms/whiplash_spec.rb
218
219
  - spec/alternative_spec.rb
220
+ - spec/combined_experiments_helper_spec.rb
219
221
  - spec/configuration_spec.rb
220
222
  - spec/dashboard_helpers_spec.rb
221
223
  - spec/dashboard_spec.rb
@@ -240,7 +242,13 @@ files:
240
242
  homepage: https://github.com/splitrb/split
241
243
  licenses:
242
244
  - MIT
243
- metadata: {}
245
+ metadata:
246
+ homepage_uri: https://github.com/splitrb/split
247
+ changelog_uri: https://github.com/splitrb/split/blob/master/CHANGELOG.md
248
+ source_code_uri: https://github.com/splitrb/split
249
+ bug_tracker_uri: https://github.com/splitrb/split/issues
250
+ wiki_uri: https://github.com/splitrb/split/wiki
251
+ mailing_list_uri: https://groups.google.com/d/forum/split-ruby
244
252
  post_install_message:
245
253
  rdoc_options: []
246
254
  require_paths:
@@ -249,22 +257,24 @@ required_ruby_version: !ruby/object:Gem::Requirement
249
257
  requirements:
250
258
  - - ">="
251
259
  - !ruby/object:Gem::Version
252
- version: 1.9.2
260
+ version: 1.9.3
253
261
  required_rubygems_version: !ruby/object:Gem::Requirement
254
262
  requirements:
255
263
  - - ">="
256
264
  - !ruby/object:Gem::Version
257
- version: '0'
265
+ version: 2.0.0
258
266
  requirements: []
259
267
  rubyforge_project: split
260
- rubygems_version: 2.6.4
268
+ rubygems_version: 2.6.11
261
269
  signing_key:
262
270
  specification_version: 4
263
271
  summary: Rack based split testing framework
264
272
  test_files:
273
+ - spec/algorithms/block_randomization_spec.rb
265
274
  - spec/algorithms/weighted_sample_spec.rb
266
275
  - spec/algorithms/whiplash_spec.rb
267
276
  - spec/alternative_spec.rb
277
+ - spec/combined_experiments_helper_spec.rb
268
278
  - spec/configuration_spec.rb
269
279
  - spec/dashboard_helpers_spec.rb
270
280
  - spec/dashboard_spec.rb
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
- %w[weighted_sample whiplash].each do |f|
3
- require "split/algorithms/#{f}"
4
- end
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
- %w[string].each do |f|
3
- require "split/extensions/#{f}"
4
- end