ocache 0.1.4 → 0.1.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5fae8b73d3a958f66f13ef90b14e2cecdc090cc
4
- data.tar.gz: e419762005f1b923a992dce75e67282f6ea0320e
3
+ metadata.gz: df119681e18ab4b7001e3d8151d1ceaeaa103ba1
4
+ data.tar.gz: 39a7168ab704fd7898922ad05053b88b7bce24dd
5
5
  SHA512:
6
- metadata.gz: 3309f2b7f16dfb98c13f2e648ed2c82af94e3f9e1004bc897515a7c98680ab9f6512aad2fd3fb896bb781a3640ff633e93c956654622bb1ad32b85401e0dc914
7
- data.tar.gz: 0c2a279bcbe24b6aa81880cabf28b3b728b33bb94e04540c451400fcf52b02835c94f7b92c83a77868e921afef008926763511e0abcb1c2861420ecd5378c26c
6
+ metadata.gz: 627882a3d32de65a873df1f51253d0f2529445adce4d5b4a371ff50869dccef57bfcc79bccd522e3c83bb7f3329351e74b527d328d147e18efc05e03bc4f3e85
7
+ data.tar.gz: ea078dbe05f4dd929dafaab625e1df59aee55a0b5ec0b68396de4a2f133e484160b1ff67af52d9a65ff8713a02a3813d9dddd2b5b4f304a284e3509e61e12dd1
@@ -1,3 +1,3 @@
1
1
  module OCache
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -49454,5 +49454,201 @@ OCacheTest: test_cache_fetch_handles_options_on_instance_methods
49454
49454
   (0.1ms) begin transaction
49455
49455
  ------------------------------------------
49456
49456
  OCacheTest: test_ensure_caching_is_enabled
49457
+ ------------------------------------------
49458
+  (0.1ms) rollback transaction
49459
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
49460
+  (0.1ms) begin transaction
49461
+ ----------------------------------------------
49462
+ OCacheTest: test_cache_fetch_handles_arguments
49463
+ ----------------------------------------------
49464
+ Queryable Load (0.7ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49465
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49466
+  (0.1ms) SAVEPOINT active_record_1
49467
+ SQL (1.0ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.100222"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.100222"]]
49468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49469
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49470
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49471
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49472
+  (0.4ms) rollback transaction
49473
+  (0.1ms) begin transaction
49474
+ ---------------------------------------------------------------
49475
+ OCacheTest: test_cache_fetch_handles_arguments_on_class_methods
49476
+ ---------------------------------------------------------------
49477
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49478
+  (0.1ms) SAVEPOINT active_record_1
49479
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.111463"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.111463"]]
49480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49481
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49482
+  (0.4ms) rollback transaction
49483
+  (0.1ms) begin transaction
49484
+ ------------------------------------------------------------------
49485
+ OCacheTest: test_cache_fetch_handles_arguments_on_instance_methods
49486
+ ------------------------------------------------------------------
49487
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49488
+  (0.1ms) SAVEPOINT active_record_1
49489
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.118579"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.118579"]]
49490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49491
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49492
+  (0.4ms) rollback transaction
49493
+  (0.1ms) begin transaction
49494
+ --------------------------------------------------
49495
+ OCacheTest: test_cache_fetch_handles_class_methods
49496
+ --------------------------------------------------
49497
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49498
+  (0.1ms) SAVEPOINT active_record_1
49499
+ SQL (0.4ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.124951"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.124951"]]
49500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49501
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49502
+  (0.4ms) rollback transaction
49503
+  (0.1ms) begin transaction
49504
+ -----------------------------------------------------
49505
+ OCacheTest: test_cache_fetch_handles_instance_methods
49506
+ -----------------------------------------------------
49507
+  (0.1ms) SAVEPOINT active_record_1
49508
+ SQL (0.4ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.129830"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.129830"]]
49509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49510
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49511
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49512
+  (0.2ms) SAVEPOINT active_record_1
49513
+ SQL (0.6ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.135778"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.135778"]]
49514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49515
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49516
+ Queryable Load (0.2ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49517
+  (0.2ms) SELECT COUNT(*) FROM "queryables"
49518
+  (0.6ms) rollback transaction
49519
+  (0.1ms) begin transaction
49520
+ --------------------------------------------
49521
+ OCacheTest: test_cache_fetch_handles_options
49522
+ --------------------------------------------
49523
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49524
+  (0.2ms) SELECT COUNT(*) FROM "queryables"
49525
+  (0.1ms) SAVEPOINT active_record_1
49526
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.149453"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.149453"]]
49527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49528
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49529
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49530
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49531
+  (0.3ms) rollback transaction
49532
+  (0.1ms) begin transaction
49533
+ -------------------------------------------------------------
49534
+ OCacheTest: test_cache_fetch_handles_options_on_class_methods
49535
+ -------------------------------------------------------------
49536
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49537
+  (0.1ms) SAVEPOINT active_record_1
49538
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.158049"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.158049"]]
49539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49540
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49541
+  (0.4ms) rollback transaction
49542
+  (0.1ms) begin transaction
49543
+ ----------------------------------------------------------------
49544
+ OCacheTest: test_cache_fetch_handles_options_on_instance_methods
49545
+ ----------------------------------------------------------------
49546
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49547
+  (0.2ms) SAVEPOINT active_record_1
49548
+ SQL (0.4ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:05:01.165078"], ["string", "string"], ["updated_at", "2014-12-16 01:05:01.165078"]]
49549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49550
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49551
+  (0.4ms) rollback transaction
49552
+  (0.1ms) begin transaction
49553
+ ------------------------------------------
49554
+ OCacheTest: test_ensure_caching_is_enabled
49555
+ ------------------------------------------
49556
+  (0.0ms) rollback transaction
49557
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
49558
+  (0.1ms) begin transaction
49559
+ ----------------------------------------------
49560
+ OCacheTest: test_cache_fetch_handles_arguments
49561
+ ----------------------------------------------
49562
+ Queryable Load (0.5ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49563
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49564
+  (0.1ms) SAVEPOINT active_record_1
49565
+ SQL (0.8ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.288630"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.288630"]]
49566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49567
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49568
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49569
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" WHERE "queryables"."string" = 'string' LIMIT 1
49570
+  (0.4ms) rollback transaction
49571
+  (0.1ms) begin transaction
49572
+ ---------------------------------------------------------------
49573
+ OCacheTest: test_cache_fetch_handles_arguments_on_class_methods
49574
+ ---------------------------------------------------------------
49575
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49576
+  (0.0ms) SAVEPOINT active_record_1
49577
+ SQL (0.2ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.299082"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.299082"]]
49578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49579
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49580
+  (0.5ms) rollback transaction
49581
+  (0.1ms) begin transaction
49582
+ ------------------------------------------------------------------
49583
+ OCacheTest: test_cache_fetch_handles_arguments_on_instance_methods
49584
+ ------------------------------------------------------------------
49585
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49586
+  (0.1ms) SAVEPOINT active_record_1
49587
+ SQL (0.2ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.305080"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.305080"]]
49588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49589
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49590
+  (0.4ms) rollback transaction
49591
+  (0.1ms) begin transaction
49592
+ --------------------------------------------------
49593
+ OCacheTest: test_cache_fetch_handles_class_methods
49594
+ --------------------------------------------------
49595
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49596
+  (0.1ms) SAVEPOINT active_record_1
49597
+ SQL (0.4ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.311381"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.311381"]]
49598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49599
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49600
+  (0.4ms) rollback transaction
49601
+  (0.1ms) begin transaction
49602
+ -----------------------------------------------------
49603
+ OCacheTest: test_cache_fetch_handles_instance_methods
49604
+ -----------------------------------------------------
49605
+  (0.1ms) SAVEPOINT active_record_1
49606
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.315760"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.315760"]]
49607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
49608
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49609
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49610
+  (0.1ms) SAVEPOINT active_record_1
49611
+ SQL (0.4ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.320566"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.320566"]]
49612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49613
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49614
+ Queryable Load (0.1ms) SELECT "queryables".* FROM "queryables" LIMIT 1
49615
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49616
+  (0.9ms) rollback transaction
49617
+  (0.2ms) begin transaction
49618
+ --------------------------------------------
49619
+ OCacheTest: test_cache_fetch_handles_options
49620
+ --------------------------------------------
49621
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49622
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49623
+  (0.1ms) SAVEPOINT active_record_1
49624
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.329961"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.329961"]]
49625
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49626
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49627
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49628
+  (0.1ms) SELECT COUNT(*) FROM "queryables"
49629
+  (0.4ms) rollback transaction
49630
+  (0.1ms) begin transaction
49631
+ -------------------------------------------------------------
49632
+ OCacheTest: test_cache_fetch_handles_options_on_class_methods
49633
+ -------------------------------------------------------------
49634
+  (0.2ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49635
+  (0.1ms) SAVEPOINT active_record_1
49636
+ SQL (0.2ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.337859"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.337859"]]
49637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49638
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49639
+  (0.4ms) rollback transaction
49640
+  (0.1ms) begin transaction
49641
+ ----------------------------------------------------------------
49642
+ OCacheTest: test_cache_fetch_handles_options_on_instance_methods
49643
+ ----------------------------------------------------------------
49644
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49645
+  (0.1ms) SAVEPOINT active_record_1
49646
+ SQL (0.3ms) INSERT INTO "queryables" ("created_at", "string", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-12-16 01:35:16.343770"], ["string", "string"], ["updated_at", "2014-12-16 01:35:16.343770"]]
49647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
49648
+  (0.1ms) SELECT COUNT(*) FROM "queryables" WHERE "queryables"."string" = 'string'
49649
+  (0.4ms) rollback transaction
49650
+  (0.1ms) begin transaction
49651
+ ------------------------------------------
49652
+ OCacheTest: test_ensure_caching_is_enabled
49457
49653
  ------------------------------------------
49458
49654
   (0.1ms) rollback transaction
@@ -0,0 +1 @@
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418691901.141438:@expires_in0
@@ -0,0 +1 @@
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418693716.323541:@expires_in0
@@ -1 +1 @@
1
- o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418614183.03585:@expires_in0
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418693716.3072388:@expires_in0
@@ -1 +1 @@
1
- o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418614183.0672388:@expires_in0
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418693716.333917:@expires_in0
@@ -1 +1 @@
1
- o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418614183.082988:@expires_in0
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418693716.3459:@expires_in0
@@ -1 +1 @@
1
- o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418614183.0441291:@expires_in0
1
+ o: ActiveSupport::Cache::Entry: @valuei:@created_atf1418693716.313514:@expires_in0
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ocache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Heuer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-15 00:00:00.000000000 Z
11
+ date: 2014-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -24,8 +24,7 @@ dependencies:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.1.8
27
- description: Clean up and save yourself a few Rails.cache.fetch blocks, wth ocache
28
- you can run Rails.cache directly on objects.
27
+ description: Run Rails.cache.fetch directly on objects.
29
28
  email:
30
29
  - Luke@HeuerLabs.com
31
30
  executables: []
@@ -116,6 +115,7 @@ files:
116
115
  - test/dummy/tmp/cache/55B/211/queryables%2F1-20141209123203113334000%2Fexpensive_instance_method%2F
117
116
  - test/dummy/tmp/cache/55C/231/queryables%2F1-20141210070502079203000%2Fexpensive_instance_method%2F
118
117
  - test/dummy/tmp/cache/55D/101/queryables%2F1-20141210022041613287000%2Fexpensive_instance_method%2F
118
+ - test/dummy/tmp/cache/55D/4C1/queryables%2F1-20141216010501129830000%2Fexpensive_instance_method%2F
119
119
  - test/dummy/tmp/cache/55D/5D1/queryables%2F1-20141211023950033730000%2Fexpensive_instance_method%2F
120
120
  - test/dummy/tmp/cache/55E/4C1/queryables%2F1-20141211020512417563000%2Fexpensive_instance_method%2F
121
121
  - test/dummy/tmp/cache/55E/5E1/queryables%2F1-20141210004224819250000%2Fexpensive_instance_method%2F
@@ -147,6 +147,7 @@ files:
147
147
  - test/dummy/tmp/cache/565/6A1/queryables%2F1-20141210004134868640000%2Fexpensive_instance_method%2F
148
148
  - test/dummy/tmp/cache/565/751/queryables%2F1-20141211020551782742000%2Fexpensive_instance_method%2F
149
149
  - test/dummy/tmp/cache/565/8E1/queryables%2F1-20141210082017755603000%2Fexpensive_instance_method%2F
150
+ - test/dummy/tmp/cache/565/9F1/queryables%2F1-20141216013516315760000%2Fexpensive_instance_method%2F
150
151
  - test/dummy/tmp/cache/566/751/queryables%2F1-20141210010231799742000%2Fexpensive_instance_method%2F
151
152
  - test/dummy/tmp/cache/566/A81/queryables%2F1-20141210021922856712000%2Fexpensive_instance_method%2F
152
153
  - test/dummy/tmp/cache/566/BE1/queryables%2F1-20141210020959346601000%2Fexpensive_instance_method%2F
@@ -483,7 +484,7 @@ rubyforge_project:
483
484
  rubygems_version: 2.4.5
484
485
  signing_key:
485
486
  specification_version: 4
486
- summary: Run Rails.cache directly on objects.
487
+ summary: Run Rails.cache.fetch directly on objects.
487
488
  test_files:
488
489
  - test/dummy/app/assets/javascripts/application.js
489
490
  - test/dummy/app/assets/stylesheets/application.css
@@ -563,6 +564,7 @@ test_files:
563
564
  - test/dummy/tmp/cache/55B/211/queryables%2F1-20141209123203113334000%2Fexpensive_instance_method%2F
564
565
  - test/dummy/tmp/cache/55C/231/queryables%2F1-20141210070502079203000%2Fexpensive_instance_method%2F
565
566
  - test/dummy/tmp/cache/55D/101/queryables%2F1-20141210022041613287000%2Fexpensive_instance_method%2F
567
+ - test/dummy/tmp/cache/55D/4C1/queryables%2F1-20141216010501129830000%2Fexpensive_instance_method%2F
566
568
  - test/dummy/tmp/cache/55D/5D1/queryables%2F1-20141211023950033730000%2Fexpensive_instance_method%2F
567
569
  - test/dummy/tmp/cache/55E/4C1/queryables%2F1-20141211020512417563000%2Fexpensive_instance_method%2F
568
570
  - test/dummy/tmp/cache/55E/5E1/queryables%2F1-20141210004224819250000%2Fexpensive_instance_method%2F
@@ -594,6 +596,7 @@ test_files:
594
596
  - test/dummy/tmp/cache/565/6A1/queryables%2F1-20141210004134868640000%2Fexpensive_instance_method%2F
595
597
  - test/dummy/tmp/cache/565/751/queryables%2F1-20141211020551782742000%2Fexpensive_instance_method%2F
596
598
  - test/dummy/tmp/cache/565/8E1/queryables%2F1-20141210082017755603000%2Fexpensive_instance_method%2F
599
+ - test/dummy/tmp/cache/565/9F1/queryables%2F1-20141216013516315760000%2Fexpensive_instance_method%2F
597
600
  - test/dummy/tmp/cache/566/751/queryables%2F1-20141210010231799742000%2Fexpensive_instance_method%2F
598
601
  - test/dummy/tmp/cache/566/A81/queryables%2F1-20141210021922856712000%2Fexpensive_instance_method%2F
599
602
  - test/dummy/tmp/cache/566/BE1/queryables%2F1-20141210020959346601000%2Fexpensive_instance_method%2F