conductor 0.9.3 → 0.9.4
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.
@@ -0,0 +1,7 @@
|
|
1
|
+
class AddIndexesToRaw < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
add_index 'conductor_raw_experiments', :created_at
|
4
|
+
add_index 'conductor_raw_experiments', :identity_id
|
5
|
+
add_index 'conductor_raw_experiments', [:identity_id, :goal], :name => "ndx_identity_goal"
|
6
|
+
end
|
7
|
+
end
|
data/lib/conductor/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conductor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -208,6 +208,7 @@ files:
|
|
208
208
|
- db/migrate/20121010173406_create_conductor_experiment_weights.rb
|
209
209
|
- db/migrate/20121010174835_create_conductor_raw_experiments.rb
|
210
210
|
- db/migrate/20121010174950_create_conductor_weight_histories.rb
|
211
|
+
- db/migrate/20121105213325_add_indexes_to_raw.rb
|
211
212
|
- lib/conductor/core_ext.rb
|
212
213
|
- lib/conductor/engine.rb
|
213
214
|
- lib/conductor/experiment.rb
|
@@ -241,7 +242,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
241
242
|
version: '0'
|
242
243
|
segments:
|
243
244
|
- 0
|
244
|
-
hash: -
|
245
|
+
hash: -2461703146946683362
|
245
246
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
246
247
|
none: false
|
247
248
|
requirements:
|
@@ -250,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
251
|
version: '0'
|
251
252
|
segments:
|
252
253
|
- 0
|
253
|
-
hash: -
|
254
|
+
hash: -2461703146946683362
|
254
255
|
requirements: []
|
255
256
|
rubyforge_project: conductor
|
256
257
|
rubygems_version: 1.8.24
|