montage_rails 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37243bfb31303e0da663c1e6afe4e38771b1bcbe
4
- data.tar.gz: bba9923c691cb817fe7923abd1d09e30da817ad3
3
+ metadata.gz: 1295d59c749692cf7450b32fe36ec4dcd056a476
4
+ data.tar.gz: f9f8854b1e6f7f62d1064c0958ef2375201bb890
5
5
  SHA512:
6
- metadata.gz: a09707b88545985f081c451cf9884d241c6ebf571579f068755aec3f758587541dd4c8147cdd51fa6ef520926ef6af04e2c3a994a1e8ab148a6b7fac6ab45570
7
- data.tar.gz: b17a87a688f16ba766a098ec03dba4fd81eef9b2102b1e86d104150de43e55efd665567d035d157739fb3c7a1e7bd51440ac76fd7727dcdad066f1db4a3604a9
6
+ metadata.gz: 1cc00f4123269e42ff5eefe09059128c13b1b8ebd2fd675619cf1b9b4bf76d50671c86ad514be47548aa6628bd933fef7dc13c271d357a363993bd6ceb910ab3
7
+ data.tar.gz: 1dec09cdf534dc839cff78a1572bd73269c65c152feacb039f0f3e40a2a868fe141e9c6cfa14bf660db66456fc259b00848e2b20f75513c85acda7cb79400f96
@@ -11,7 +11,7 @@ module MontageRails
11
11
  include ActiveModel::Model
12
12
  include Virtus.model
13
13
 
14
- define_model_callbacks :save, :create
14
+ define_model_callbacks :save, :create, :initialize
15
15
 
16
16
  class << self
17
17
  # Delegates all of the relation methods to the class level object, so they can be called on the base class
@@ -210,12 +210,14 @@ module MontageRails
210
210
  delegate :attributes_from_response, to: "self.class"
211
211
 
212
212
  def initialize(params = {})
213
- initialize_columns
214
- @persisted = params[:persisted] ? params[:persisted] : false
215
- @current_method = "Load"
216
- @errors = ActiveModel::Errors.new(self)
217
- super(params)
218
- @old_attributes = attributes.clone
213
+ run_callbacks :initialize do
214
+ initialize_columns
215
+ @persisted = params[:persisted] ? params[:persisted] : false
216
+ @current_method = "Load"
217
+ @errors = ActiveModel::Errors.new(self)
218
+ super(params)
219
+ @old_attributes = attributes.clone
220
+ end
219
221
  end
220
222
 
221
223
  def ==(other)
@@ -1,3 +1,3 @@
1
1
  module MontageRails
2
- VERSION = "0.6.3"
2
+ VERSION = "0.6.4"
3
3
  end
@@ -3,12 +3,14 @@ class Movie < MontageRails::Base
3
3
 
4
4
  belongs_to :studio
5
5
 
6
- attr_accessor :before_save_var, :before_create_var, :after_save_var, :after_create_var
6
+ attr_accessor :before_save_var, :before_create_var, :after_save_var,
7
+ :after_create_var, :after_init_var
7
8
 
8
9
  before_save :do_stuff
9
10
  before_create :do_other_stuff
10
11
  after_save :do_stuff_after_save
11
12
  after_create :do_stuff_after_create
13
+ after_initialize :do_stuff_after_init
12
14
 
13
15
  validates :title, presence: true
14
16
 
@@ -30,4 +32,7 @@ class Movie < MontageRails::Base
30
32
  save!
31
33
  end
32
34
 
35
+ def do_stuff_after_init
36
+ @after_init_var = "AFTER INIT"
37
+ end
33
38
  end
@@ -23894,3 +23894,648 @@ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at
23894
23894
  Movie Load (7.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
23895
23895
  Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-08-17 12:48:44 -0700
23896
23896
  Movie Load (6.8ms) {:filter=>{:votes__gt=>900000}}
23897
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
23898
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
23899
+  (0.1ms) select sqlite_version(*)
23900
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23901
+  (0.1ms) SELECT version FROM "schema_migrations"
23902
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
23903
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23904
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23905
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23906
+ Movie Create (10.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23907
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23908
+ Movie Update (12.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23909
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23910
+ Movie Create (6.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23911
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23912
+ Movie Update (9.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23913
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23914
+ Movie Load (13.8ms) {:filter=>{}, :limit=>1}
23915
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23916
+ Movie Load (10.1ms) {:filter=>{}}
23917
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23918
+ Movie Create (8.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23919
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23920
+ Movie Update (10.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23921
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23922
+ Movie Create (11.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23923
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23924
+ Movie Update (12.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23925
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23926
+ Movie Create (9.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23927
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23928
+ Movie Update (8.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23929
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23930
+ Movie Create (10.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23931
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23932
+ Movie Update (11.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23933
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23934
+ Movie Update (12.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23935
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23936
+ Movie Create (6.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23937
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23938
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23939
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23940
+ Movie Load (7.3ms) {:filter=>{}}
23941
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23942
+ Movie Create (6.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23943
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23944
+ Movie Update (6.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23945
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23946
+ Movie Create (6.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23947
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23948
+ Movie Update (7.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23949
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23950
+ Movie Create (5.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23951
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23952
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23953
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23954
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
23955
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23956
+ Movie Load (6.6ms) {:filter=>{}, :limit=>1}
23957
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23958
+ Movie Load (7.9ms) {:filter=>{}, :limit=>1}
23959
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23960
+ Movie Load (6.9ms) {:filter=>{}, :limit=>1}
23961
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23962
+ Actor Load (9.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23963
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23964
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23965
+ Actor Load (7.4ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23966
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23967
+ MontageRails::BaseTest::TestClass Load (6.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
23968
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23969
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23970
+ Movie Create (5.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23971
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23972
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23973
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23974
+ Movie Load (7.7ms) #<MontageRails::Relation:0x007f80ab466c10>
23975
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23976
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23977
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23978
+ Movie Update (7.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23979
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23980
+ Movie Create (7.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23981
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23982
+ Movie Update (6.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23983
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23984
+ Movie Load (7.5ms) {:filter=>{}, :limit=>1}
23985
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23986
+ Actor Load (8.0ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23987
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23988
+ Actor Load (7.2ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
23989
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23990
+ Actor Load (7.4ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
23991
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23992
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
23993
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23994
+ Movie Update (7.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
23995
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23996
+ Movie Load (6.9ms) {:filter=>{}, :limit=>1}
23997
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
23998
+ Actor Load (9.2ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
23999
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24000
+ Actor Load (6.6ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24001
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24002
+ MontageRails::BaseTest::TestClass Load (6.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24003
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24004
+ Actor Load (8.3ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24005
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24006
+ Movie Create (6.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24007
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24008
+ Movie Update (6.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24009
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:32 -0700
24010
+ Movie Update (6.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24011
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24012
+ Movie Load (6.7ms) {:filter=>{}, :limit=>1}
24013
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24014
+ Actor Load (7.1ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24015
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24016
+ Actor Load (6.9ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24017
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24018
+ Actor Load (7.4ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
24019
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24020
+ Movie Create (6.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24021
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24022
+ Movie Update (6.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24023
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24024
+ Movie Create (10.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24025
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24026
+ Movie Update (9.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24027
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24028
+ Movie Load (8.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24029
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24030
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24031
+ Studio Load (13.1ms) {:filter=>{:name=>"Universal"}, :limit=>1}
24032
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24033
+ Studio Load (15.4ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24034
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24035
+ Studio Load (8.3ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24036
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:45:33 -0700
24037
+ Movie Load (12.5ms) #<MontageRails::Relation:0x007f80ad461d80>
24038
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24039
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
24040
+  (0.1ms) select sqlite_version(*)
24041
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24042
+  (0.1ms) SELECT version FROM "schema_migrations"
24043
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
24044
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24045
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24046
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24047
+ Movie Create (16.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24048
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24049
+ Movie Update (8.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24050
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24051
+ Movie Load (12.9ms) {:filter=>{}, :limit=>1}
24052
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24053
+ Actor Load (9.3ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24054
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24055
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24056
+ Actor Load (8.6ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24057
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24058
+ Actor Load (9.3ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
24059
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24060
+ Movie Create (11.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24061
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24062
+ Movie Update (11.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24063
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24064
+ Movie Update (11.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24065
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24066
+ Movie Load (10.9ms) {:filter=>{}, :limit=>1}
24067
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24068
+ Movie Load (9.2ms) {:filter=>{}}
24069
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24070
+ Movie Create (12.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24071
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24072
+ Movie Update (11.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24073
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24074
+ Movie Create (8.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24075
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24076
+ Movie Update (10.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24077
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24078
+ Movie Create (10.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24079
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24080
+ Movie Update (10.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24081
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24082
+ Movie Create (11.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24083
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24084
+ Movie Update (12.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24085
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24086
+ Movie Create (9.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24087
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24088
+ Movie Update (9.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24089
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24090
+ Movie Create (10.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24091
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24092
+ Movie Update (11.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24093
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24094
+ Movie Create (9.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24095
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24096
+ Movie Update (9.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24097
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24098
+ Movie Create (10.5ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24099
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24100
+ Movie Update (12.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24101
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24102
+ Movie Update (9.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24103
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24104
+ Movie Load (7.3ms) {:filter=>{}, :limit=>1}
24105
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24106
+ Actor Load (10.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24107
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24108
+ Actor Load (13.1ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24109
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24110
+ Actor Load (11.8ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24111
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24112
+ Movie Create (8.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24113
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24114
+ Movie Update (9.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24115
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24116
+ Movie Load (9.0ms) {:filter=>{}, :limit=>1}
24117
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24118
+ Actor Load (10.2ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24119
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24120
+ Actor Load (12.6ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24121
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24122
+ MontageRails::BaseTest::TestClass Load (8.5ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24123
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24124
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24125
+ Actor Load (8.3ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24126
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24127
+ Movie Create (11.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24128
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:17 -0700
24129
+ Movie Update (10.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24130
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24131
+ Movie Update (15.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
24132
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24133
+ Movie Create (8.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24134
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24135
+ Movie Update (13.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24136
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24137
+ Movie Load (7.0ms) #<MontageRails::Relation:0x007ff5e80f99a8>
24138
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24139
+ Movie Load (11.8ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24140
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24141
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24142
+ Studio Load (10.4ms) {:filter=>{:name=>"Universal"}, :limit=>1}
24143
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24144
+ Studio Load (12.4ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24145
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24146
+ Studio Load (10.8ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24147
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24148
+ Movie Create (7.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24149
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24150
+ Movie Update (9.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24151
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24152
+ Movie Create (8.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24153
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24154
+ Movie Update (11.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24155
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24156
+ Movie Load (7.0ms) {:filter=>{}}
24157
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24158
+ Movie Load (11.4ms) #<MontageRails::Relation:0x007ff5e2a568d0>
24159
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24160
+ Movie Load (7.1ms) {:filter=>{}, :limit=>1}
24161
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24162
+ Movie Load (9.7ms) {:filter=>{}, :limit=>1}
24163
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24164
+ Movie Load (11.0ms) {:filter=>{}, :limit=>1}
24165
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24166
+ Actor Load (7.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24167
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24168
+ Actor Load (15.8ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24169
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24170
+ MontageRails::BaseTest::TestClass Load (13.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24171
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24172
+ Movie Create (15.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24173
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24174
+ Movie Update (12.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24175
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24176
+ Movie Create (11.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24177
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:49:18 -0700
24178
+ Movie Update (14.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24179
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24180
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
24181
+  (0.1ms) select sqlite_version(*)
24182
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24183
+  (0.1ms) SELECT version FROM "schema_migrations"
24184
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
24185
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
24186
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24187
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24188
+ Movie Create (8.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24189
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24190
+ Movie Update (10.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24191
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24192
+ Movie Create (11.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24193
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24194
+ Movie Update (9.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24195
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24196
+ Movie Update (7.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24197
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:14 -0700
24198
+ Movie Load (11.2ms) {:filter=>{}}
24199
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24200
+ Movie Load (7.3ms) {:filter=>{}, :limit=>1}
24201
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24202
+ Actor Load (12.5ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24203
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24204
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24205
+ Actor Load (9.5ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24206
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24207
+ Actor Load (12.4ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24208
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24209
+ Movie Create (11.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24210
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24211
+ Movie Update (12.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24212
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24213
+ Movie Create (10.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24214
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24215
+ Movie Update (11.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24216
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24217
+ Movie Load (7.0ms) {:filter=>{}, :limit=>1}
24218
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24219
+ Actor Load (11.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24220
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24221
+ Actor Load (11.7ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24222
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24223
+ Actor Load (9.4ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
24224
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24225
+ Movie Create (12.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24226
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24227
+ Movie Update (11.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24228
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24229
+ Movie Load (11.2ms) {:filter=>{}, :limit=>1}
24230
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24231
+ Movie Load (8.0ms) {:filter=>{}, :limit=>1}
24232
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24233
+ Movie Create (11.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24234
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24235
+ Movie Update (11.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24236
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24237
+ Movie Create (6.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24238
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24239
+ Movie Update (9.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24240
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24241
+ Movie Load (7.0ms) {:filter=>{}, :limit=>1}
24242
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24243
+ Movie Load (10.3ms) {:filter=>{}}
24244
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24245
+ Movie Load (12.2ms) {:filter=>{}, :limit=>1}
24246
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24247
+ Actor Load (7.6ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24248
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24249
+ Actor Load (10.0ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24250
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24251
+ MontageRails::BaseTest::TestClass Load (11.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24252
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24253
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24254
+ Movie Create (8.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24255
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24256
+ Movie Update (9.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24257
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24258
+ Movie Update (8.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24259
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24260
+ Movie Load (11.8ms) #<MontageRails::Relation:0x007ff0b8973848>
24261
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24262
+ Movie Create (8.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24263
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24264
+ Movie Update (9.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24265
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24266
+ Movie Update (7.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
24267
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24268
+ Movie Create (11.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24269
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24270
+ Movie Update (13.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24271
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24272
+ Movie Create (9.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24273
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24274
+ Movie Update (11.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24275
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24276
+ Movie Create (13.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24277
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24278
+ Movie Update (7.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24279
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24280
+ Movie Load (8.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24281
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24282
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24283
+ Studio Load (13.5ms) {:filter=>{:name=>"Universal"}, :limit=>1}
24284
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24285
+ Studio Load (12.2ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24286
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24287
+ Studio Load (13.1ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24288
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24289
+ Movie Load (11.1ms) #<MontageRails::Relation:0x007ff0b2b326d0>
24290
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24291
+ Movie Create (12.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24292
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24293
+ Movie Update (12.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24294
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24295
+ Movie Load (10.1ms) {:filter=>{}, :limit=>1}
24296
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24297
+ Actor Load (7.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24298
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24299
+ Actor Load (12.2ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24300
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24301
+ MontageRails::BaseTest::TestClass Load (11.4ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24302
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:50:15 -0700
24303
+ Actor Load (10.7ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24304
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24305
+ Movie Create (6.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24306
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24307
+ Movie Update (9.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24308
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24309
+ Movie Create (11.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24310
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24311
+ Movie Update (11.2ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24312
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24313
+ Movie Create (12.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24314
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24315
+ Movie Update (9.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24316
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24317
+ Movie Create (9.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24318
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:50:16 -0700
24319
+ Movie Update (11.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24320
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24321
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
24322
+  (0.1ms) select sqlite_version(*)
24323
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24324
+  (0.1ms) SELECT version FROM "schema_migrations"
24325
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
24326
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
24327
+ foo Load (0.1ms) bar
24328
+ foo Load [CACHE] (0.0ms) bar
24329
+ foo Load (0.1ms) bar
24330
+ foo Load (0.0ms) bar
24331
+ foo Load (0.0ms) bar
24332
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:00 -0700
24333
+ Movie Load (21.8ms) #<MontageRails::Relation:0x007fb3d22e1d40>
24334
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:51:00 -0700
24335
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24336
+ Movie Load (7.1ms) {:filter=>{}, :limit=>1}
24337
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24338
+ Actor Load (8.8ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24339
+ Started GET "/montage_rails_mock/api/v1/schemas/actors/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24340
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24341
+ Actor Load (9.3ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24342
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24343
+ MontageRails::BaseTest::TestClass Load (9.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24344
+ Started GET "/montage_rails_mock/api/v1/schemas/movies/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24345
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24346
+ Movie Load (7.1ms) {:filter=>{}, :limit=>1}
24347
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24348
+ Actor Load (10.4ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24349
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24350
+ Actor Load (16.1ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24351
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24352
+ Actor Load (9.2ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24353
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24354
+ Movie Create (8.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24355
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24356
+ Movie Update (11.6ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24357
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24358
+ Movie Create (11.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24359
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24360
+ Movie Update (7.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24361
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24362
+ Movie Load (11.1ms) {:filter=>{}, :limit=>1}
24363
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24364
+ Movie Load (9.1ms) {:filter=>{}, :limit=>1}
24365
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24366
+ Movie Create (11.0ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24367
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24368
+ Movie Update (9.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24369
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24370
+ Movie Create (8.4ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24371
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24372
+ Movie Update (11.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24373
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24374
+ Movie Create (11.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24375
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24376
+ Movie Update (6.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24377
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24378
+ Movie Update (8.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24379
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24380
+ Movie Create (12.3ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24381
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24382
+ Movie Update (11.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24383
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24384
+ Movie Create (7.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24385
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24386
+ Movie Update (8.8ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24387
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24388
+ Movie Update (12.3ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24389
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24390
+ Movie Create (7.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24391
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24392
+ Movie Update (9.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24393
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24394
+ Movie Load (12.9ms) {:filter=>{}}
24395
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24396
+ Movie Load (6.9ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24397
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24398
+ Started POST "/montage_rails_mock/api/v1/schemas/studios/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24399
+ Studio Load (15.8ms) {:filter=>{:name=>"Universal"}, :limit=>1}
24400
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24401
+ Studio Load (9.0ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24402
+ Started GET "/montage_rails_mock/api/v1/schemas/studios/19442e09-5c2d-4e5d-8f34-675570e81414/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24403
+ Studio Load (8.2ms) 19442e09-5c2d-4e5d-8f34-675570e81414
24404
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24405
+ Movie Load (6.9ms) #<MontageRails::Relation:0x007fb3cc07d0a0>
24406
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24407
+ Movie Load (15.8ms) {:filter=>{}, :limit=>1}
24408
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24409
+ Movie Load (6.7ms) {:filter=>{}}
24410
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24411
+ Movie Create (8.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24412
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24413
+ Movie Update (10.4ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24414
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24415
+ Movie Create (11.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24416
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24417
+ Movie Update (8.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24418
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24419
+ Movie Create (9.1ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24420
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24421
+ Movie Update (9.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24422
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24423
+ Movie Load (7.4ms) {:filter=>{}, :limit=>1}
24424
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24425
+ Actor Load (10.8ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24426
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24427
+ Actor Load (13.0ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24428
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24429
+ Actor Load (7.5ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :name=>"Steve Martin"}, :limit=>1}
24430
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24431
+ Movie Create (10.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24432
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:01 -0700
24433
+ Movie Update (11.5ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24434
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24435
+ Movie Create (9.8ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24436
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24437
+ Movie Update (9.0ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24438
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24439
+ Movie Load (7.1ms) {:filter=>{}, :limit=>1}
24440
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24441
+ Actor Load (10.3ms) {:filter=>{:name=>"Steve Martin"}, :limit=>1}
24442
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24443
+ Actor Load (15.4ms) {:filter=>{:name=>"Mark Hamill"}, :limit=>1}
24444
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24445
+ MontageRails::BaseTest::TestClass Load (9.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24446
+ Started POST "/montage_rails_mock/api/v1/schemas/actors/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24447
+ Actor Load (8.5ms) {:filter=>{:movie_id=>"69cc93af-1f0e-43bc-ac9a-19117111978e"}, :limit=>1}
24448
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24449
+ Movie Create (10.7ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24450
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24451
+ Movie Update (11.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24452
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24453
+ Movie Create (8.9ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24454
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24455
+ Movie Update (9.1ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24456
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24457
+ Movie Create (11.6ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24458
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24459
+ Movie Update (13.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24460
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24461
+ Movie Update (8.7ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>900, :year=>1983}
24462
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24463
+ Movie Create (11.2ms) {:studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>500, :year=>1983}
24464
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/save/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24465
+ Movie Update (11.9ms) 69cc93af-1f0e-43bc-ac9a-19117111978e: {:id=>"69cc93af-1f0e-43bc-ac9a-19117111978e", :studio_id=>"19442e09-5c2d-4e5d-8f34-675570e81414", :rank=>4, :rating=>2.0, :title=>"The Jerk", :votes=>600, :year=>1983}
24466
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24467
+ Movie Load (10.7ms) {:filter=>{:votes__gt=>5}}
24468
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24469
+ Movie Load (11.1ms) {:filter=>{:title=>"The Jerk"}}
24470
+ foo Load (0.0ms) bar
24471
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24472
+ Movie Load (9.4ms) {:filter=>{:title=>"The Jerk"}, :pluck=>["title"]}
24473
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24474
+ Movie Load (9.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24475
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24476
+ Movie Load (11.6ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24477
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24478
+ Movie Load (8.3ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24479
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24480
+ Movie Load (6.8ms) {:filter=>{:votes__gt=>900000}}
24481
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24482
+ Movie Load (7.2ms) {:filter=>{:title=>"Foo"}}
24483
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24484
+ Movie Load (10.7ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24485
+ Started POST "/montage_rails_mock/api/v1/schemas/movies/query/" for 127.0.0.1 at 2015-10-16 16:51:02 -0700
24486
+ Movie Load (11.1ms) {:filter=>{:title=>"The Jerk"}, :limit=>1}
24487
+  (0.1ms) begin transaction
24488
+ ---------------------------------------------------------------------------------------
24489
+ MontageRailsTest: test_: .configure should raise an exception if authentication fails.
24490
+ ---------------------------------------------------------------------------------------
24491
+  (0.1ms) rollback transaction
24492
+  (0.2ms) begin transaction
24493
+ ----------------------------------------------------------------------------------------------------
24494
+ MontageRailsTest: test_: .configure should not require a username and password if a token is given.
24495
+ ----------------------------------------------------------------------------------------------------
24496
+  (0.1ms) rollback transaction
24497
+  (0.1ms) begin transaction
24498
+ ---------------------------------------------------------------------------------------------------------------
24499
+ MontageRailsTest: test_: .configure should call the auth method and retrieve the token if it has not been set.
24500
+ ---------------------------------------------------------------------------------------------------------------
24501
+  (0.1ms) rollback transaction
24502
+  (0.0ms) begin transaction
24503
+ -------------------------------------------------------------------------------------------------
24504
+ MontageRailsTest: test_: .configure should require a username and password if no token is given.
24505
+ -------------------------------------------------------------------------------------------------
24506
+  (0.1ms) rollback transaction
24507
+  (0.1ms) begin transaction
24508
+ --------------------------------------------------------------------------------------
24509
+ MontageRailsTest: test_: .configure should accept boolean controling mock server use.
24510
+ --------------------------------------------------------------------------------------
24511
+  (0.1ms) rollback transaction
24512
+  (0.0ms) begin transaction
24513
+ --------------------------------------------------------------
24514
+ MontageRailsTest: test_: .configure should accept server url.
24515
+ --------------------------------------------------------------
24516
+  (0.1ms) rollback transaction
24517
+  (0.1ms) begin transaction
24518
+ ------------------------------------------------------------------------------------------------
24519
+ MontageRailsTest: test_: .configure should have nil url_prefix if use mock server set to false.
24520
+ ------------------------------------------------------------------------------------------------
24521
+  (0.0ms) rollback transaction
24522
+  (0.0ms) begin transaction
24523
+ -------------------------------------------------------------------------------------------
24524
+ MontageRailsTest: test_: .configure should accept a username, password, token, and domain.
24525
+ -------------------------------------------------------------------------------------------
24526
+  (0.1ms) rollback transaction
24527
+  (0.1ms) begin transaction
24528
+ --------------------------------------------------------------------------------------------
24529
+ MontageRailsTest: test_: .configure should accept server url even if use mock set to false.
24530
+ --------------------------------------------------------------------------------------------
24531
+  (0.0ms) rollback transaction
24532
+  (0.1ms) begin transaction
24533
+ -------------------------------------------------------------
24534
+ MontageRailsTest: test_: .configure should require a domain.
24535
+ -------------------------------------------------------------
24536
+  (0.1ms) rollback transaction
24537
+  (0.1ms) begin transaction
24538
+ ---------------------------------------------------------------------------------------
24539
+ MontageRailsTest: test_: .configure should have url_prefix if mock server set to true.
24540
+ ---------------------------------------------------------------------------------------
24541
+  (0.1ms) rollback transaction
@@ -125,6 +125,12 @@ class MontageRails::BaseTest < MiniTest::Test
125
125
 
126
126
  assert_equal "AFTER CREATE", @movie.after_create_var
127
127
  end
128
+
129
+ should "call the after_initialize callback on new" do
130
+ @movie = Movie.new(MovieResource.fetch_item)
131
+
132
+ assert_equal "AFTER INIT", @movie.after_init_var
133
+ end
128
134
  end
129
135
 
130
136
  context "delegation" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: montage_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - dphaener
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-17 00:00:00.000000000 Z
11
+ date: 2015-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails