polyblock 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/haml.map +10 -0
  3. data/app/assets/javascripts/polyblock/polyblock.js.coffee +8 -2
  4. data/app/controllers/polyblock/polyblocks_controller.rb +7 -3
  5. data/app/helpers/polyblock/application_helper.rb +2 -2
  6. data/app/views/polyblock/_editor_bar.html.erb +3 -3
  7. data/lib/polyblock/version.rb +1 -1
  8. data/test/dummy/app/controllers/events_controller.rb +2 -0
  9. data/test/dummy/app/controllers/home_controller.rb +2 -2
  10. data/test/dummy/app/helpers/events_helper.rb +2 -0
  11. data/test/dummy/app/models/event.rb +5 -0
  12. data/test/dummy/app/views/home/index.html.haml +4 -3
  13. data/test/dummy/config/routes.rb +2 -2
  14. data/test/dummy/db/development.sqlite3 +0 -0
  15. data/test/dummy/db/migrate/20140121144352_create_events.rb +8 -0
  16. data/test/dummy/db/schema.rb +7 -1
  17. data/test/dummy/db/test.sqlite3 +0 -0
  18. data/test/dummy/log/development.log +7176 -0
  19. data/test/dummy/test/controllers/{parents_controller_test.rb → events_controller_test.rb} +1 -1
  20. data/test/dummy/test/fixtures/events.yml +11 -0
  21. data/test/dummy/test/helpers/events_helper_test.rb +4 -0
  22. data/test/dummy/test/models/{parent_test.rb → event_test.rb} +1 -1
  23. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/1926295578648cdc013840b112b4549a +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/1e1c73f8892119a4dbc6ead7718b4472 +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/1eacdbb3be88857a9387909bc1ae555c +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/23a02f793bdc3b6a6cbd015f184c6f6c +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  29. data/test/dummy/tmp/cache/assets/development/sprockets/30e3552cad42917377b8675173b87d6d +0 -0
  30. data/test/dummy/tmp/cache/assets/development/sprockets/54e6936a11d8f5cdf5fa2f48475d2207 +0 -0
  31. data/test/dummy/tmp/cache/assets/development/sprockets/65a5689d2de3f83bcc1531b0bd7918ce +0 -0
  32. data/test/dummy/tmp/cache/assets/development/sprockets/65dccf676de4439612547abc6451ba65 +0 -0
  33. data/test/dummy/tmp/cache/assets/development/sprockets/69bda14eaa1d8ad1ea1235abb619e366 +0 -0
  34. data/test/dummy/tmp/cache/assets/development/sprockets/80a9daa2db75d17e5e24d7442ccb41bc +0 -0
  35. data/test/dummy/tmp/cache/assets/development/sprockets/98c83dce67cf84818203c6f995f4ba36 +0 -0
  36. data/test/dummy/tmp/cache/assets/development/sprockets/ba56eb60d599a0ca3d2f6b67772774c2 +0 -0
  37. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  38. data/test/dummy/tmp/cache/assets/development/sprockets/d09e190e75f7ec3bc98994e13a005699 +0 -0
  39. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  40. data/test/dummy/tmp/cache/assets/development/sprockets/f1087ef68b351492e06aa6cfd82d0438 +0 -0
  41. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  42. data/test/dummy/tmp/pids/server.pid +1 -0
  43. metadata +43 -20
  44. data/test/dummy/app/controllers/parents_controller.rb +0 -2
  45. data/test/dummy/app/helpers/parents_helper.rb +0 -2
  46. data/test/dummy/app/models/parent.rb +0 -5
  47. data/test/dummy/test/fixtures/parents.yml +0 -7
  48. data/test/dummy/test/helpers/parents_helper_test.rb +0 -4
  49. /data/test/dummy/app/assets/javascripts/{parents.js → events.js} +0 -0
  50. /data/test/dummy/app/assets/stylesheets/{parents.css → events.css} +0 -0
@@ -1,6 +1,6 @@
1
1
  require 'test_helper'
2
2
 
3
- class ParentsControllerTest < ActionController::TestCase
3
+ class EventsControllerTest < ActionController::TestCase
4
4
  # test "the truth" do
5
5
  # assert true
6
6
  # end
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class EventsHelperTest < ActionView::TestCase
4
+ end
@@ -1,6 +1,6 @@
1
1
  require 'test_helper'
2
2
 
3
- class ParentTest < ActiveSupport::TestCase
3
+ class EventTest < ActiveSupport::TestCase
4
4
  # test "the truth" do
5
5
  # assert true
6
6
  # end
@@ -0,0 +1 @@
1
+ 48499
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polyblock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-14 00:00:00.000000000 Z
11
+ date: 2014-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -170,6 +170,7 @@ files:
170
170
  - app/assets/javascripts/ckeditor/plugins/sourcedialog/plugin.js
171
171
  - app/assets/javascripts/ckeditor/plugins/sourcedialog/samples/sourcedialog.html
172
172
  - app/assets/javascripts/clientside-haml.js
173
+ - app/assets/javascripts/haml.map
173
174
  - app/assets/javascripts/polyblock/application.js
174
175
  - app/assets/javascripts/polyblock/polyblock.js.coffee
175
176
  - app/assets/javascripts/transit.js
@@ -204,21 +205,21 @@ files:
204
205
  - README.rdoc
205
206
  - test/controllers/polyblock/polyblocks_controller_test.rb
206
207
  - test/dummy/app/assets/javascripts/application.js
208
+ - test/dummy/app/assets/javascripts/events.js
207
209
  - test/dummy/app/assets/javascripts/home.js
208
- - test/dummy/app/assets/javascripts/parents.js
209
210
  - test/dummy/app/assets/stylesheets/application.css
211
+ - test/dummy/app/assets/stylesheets/events.css
210
212
  - test/dummy/app/assets/stylesheets/home.css
211
- - test/dummy/app/assets/stylesheets/parents.css
212
213
  - test/dummy/app/controllers/application_controller.rb
214
+ - test/dummy/app/controllers/events_controller.rb
213
215
  - test/dummy/app/controllers/home_controller.rb
214
- - test/dummy/app/controllers/parents_controller.rb
215
216
  - test/dummy/app/helpers/application_helper.rb
217
+ - test/dummy/app/helpers/events_helper.rb
216
218
  - test/dummy/app/helpers/home_helper.rb
217
- - test/dummy/app/helpers/parents_helper.rb
218
219
  - test/dummy/app/models/ckeditor/asset.rb
219
220
  - test/dummy/app/models/ckeditor/attachment_file.rb
220
221
  - test/dummy/app/models/ckeditor/picture.rb
221
- - test/dummy/app/models/parent.rb
222
+ - test/dummy/app/models/event.rb
222
223
  - test/dummy/app/views/home/index.html.haml
223
224
  - test/dummy/app/views/layouts/application.html.erb
224
225
  - test/dummy/bin/bundle
@@ -245,7 +246,9 @@ files:
245
246
  - test/dummy/db/development.sqlite3
246
247
  - test/dummy/db/migrate/20140107201539_create_ckeditor_assets.rb
247
248
  - test/dummy/db/migrate/20140107201540_create_polyblock_blocks.rb
249
+ - test/dummy/db/migrate/20140121144352_create_events.rb
248
250
  - test/dummy/db/schema.rb
251
+ - test/dummy/db/test.sqlite3
249
252
  - test/dummy/log/development.log
250
253
  - test/dummy/public/404.html
251
254
  - test/dummy/public/422.html
@@ -253,12 +256,12 @@ files:
253
256
  - test/dummy/public/favicon.ico
254
257
  - test/dummy/Rakefile
255
258
  - test/dummy/README.rdoc
259
+ - test/dummy/test/controllers/events_controller_test.rb
256
260
  - test/dummy/test/controllers/home_controller_test.rb
257
- - test/dummy/test/controllers/parents_controller_test.rb
258
- - test/dummy/test/fixtures/parents.yml
261
+ - test/dummy/test/fixtures/events.yml
262
+ - test/dummy/test/helpers/events_helper_test.rb
259
263
  - test/dummy/test/helpers/home_helper_test.rb
260
- - test/dummy/test/helpers/parents_helper_test.rb
261
- - test/dummy/test/models/parent_test.rb
264
+ - test/dummy/test/models/event_test.rb
262
265
  - test/dummy/tmp/cache/assets/development/sprockets/00929e7c32e73d0337dca39af60c0fe1
263
266
  - test/dummy/tmp/cache/assets/development/sprockets/0093d60995313a6bf33ae97a8b4c74bb
264
267
  - test/dummy/tmp/cache/assets/development/sprockets/017455054e706e74f7c6201072541b35
@@ -391,8 +394,10 @@ files:
391
394
  - test/dummy/tmp/cache/assets/development/sprockets/1dcf2f066cb7d1f61053762f665026f0
392
395
  - test/dummy/tmp/cache/assets/development/sprockets/1dffad877a8f904c10a6b9494366d338
393
396
  - test/dummy/tmp/cache/assets/development/sprockets/1e0b2e107f8dd97c45cab82888dd8f6a
397
+ - test/dummy/tmp/cache/assets/development/sprockets/1e1c73f8892119a4dbc6ead7718b4472
394
398
  - test/dummy/tmp/cache/assets/development/sprockets/1e275bc3b7702d36d48aa2b70428ad2b
395
399
  - test/dummy/tmp/cache/assets/development/sprockets/1e500bc6b21987abafff3290008bbccd
400
+ - test/dummy/tmp/cache/assets/development/sprockets/1eacdbb3be88857a9387909bc1ae555c
396
401
  - test/dummy/tmp/cache/assets/development/sprockets/1ee0990a88590660997e970db7510095
397
402
  - test/dummy/tmp/cache/assets/development/sprockets/1eeb828973d38ac019484de910989d1a
398
403
  - test/dummy/tmp/cache/assets/development/sprockets/1f4cc72239dd72e3ad61e7247427b8ae
@@ -424,6 +429,7 @@ files:
424
429
  - test/dummy/tmp/cache/assets/development/sprockets/22bb07ddf38b4af9de81863e91635c87
425
430
  - test/dummy/tmp/cache/assets/development/sprockets/22c14319c3f09fc0c6666344d52e6ee4
426
431
  - test/dummy/tmp/cache/assets/development/sprockets/23015e602f3a9105122f068e33c245f6
432
+ - test/dummy/tmp/cache/assets/development/sprockets/23a02f793bdc3b6a6cbd015f184c6f6c
427
433
  - test/dummy/tmp/cache/assets/development/sprockets/23bb6117970efddcefddabe78efbb5af
428
434
  - test/dummy/tmp/cache/assets/development/sprockets/23c5b1ec71d2803d9718bd7ee749ed06
429
435
  - test/dummy/tmp/cache/assets/development/sprockets/240f882fd09e90fb9a8491a79bd20a6f
@@ -485,6 +491,7 @@ files:
485
491
  - test/dummy/tmp/cache/assets/development/sprockets/30372050d03c549f832d0a229f054a09
486
492
  - test/dummy/tmp/cache/assets/development/sprockets/306e7cf0d3fc26fc08fc19f5501e849c
487
493
  - test/dummy/tmp/cache/assets/development/sprockets/309a0148dfcef413869954f9c9126733
494
+ - test/dummy/tmp/cache/assets/development/sprockets/30e3552cad42917377b8675173b87d6d
488
495
  - test/dummy/tmp/cache/assets/development/sprockets/3105a0833af87dbcd24616a1aa326624
489
496
  - test/dummy/tmp/cache/assets/development/sprockets/31242785b0b30c2926a0a001ba15c37b
490
497
  - test/dummy/tmp/cache/assets/development/sprockets/3160cace1fcfc449a032b045eb1521d1
@@ -724,6 +731,7 @@ files:
724
731
  - test/dummy/tmp/cache/assets/development/sprockets/6565732d0eb15299d2be567f1c351f81
725
732
  - test/dummy/tmp/cache/assets/development/sprockets/657f5e3f02f3b8fbd03af3eade7f0eb0
726
733
  - test/dummy/tmp/cache/assets/development/sprockets/65a5689d2de3f83bcc1531b0bd7918ce
734
+ - test/dummy/tmp/cache/assets/development/sprockets/65dccf676de4439612547abc6451ba65
727
735
  - test/dummy/tmp/cache/assets/development/sprockets/663f93a049bd5ffa87019e82ddb725e6
728
736
  - test/dummy/tmp/cache/assets/development/sprockets/6679546d9cfa5822e4c0350af4ebec1d
729
737
  - test/dummy/tmp/cache/assets/development/sprockets/66a715b5252355fae8785a848f07890c
@@ -744,6 +752,7 @@ files:
744
752
  - test/dummy/tmp/cache/assets/development/sprockets/697c76529abfd36f3c87aac1434a4911
745
753
  - test/dummy/tmp/cache/assets/development/sprockets/697ee8b0e2af58032e833139d5caf627
746
754
  - test/dummy/tmp/cache/assets/development/sprockets/69937f8b7b510500d2c9eed82683d2d0
755
+ - test/dummy/tmp/cache/assets/development/sprockets/69bda14eaa1d8ad1ea1235abb619e366
747
756
  - test/dummy/tmp/cache/assets/development/sprockets/69ce1a46309e81d86c0bd62edae8fa35
748
757
  - test/dummy/tmp/cache/assets/development/sprockets/69d55880feeb67c85a56f48d0ccd9e31
749
758
  - test/dummy/tmp/cache/assets/development/sprockets/69e131051c40fd2e813445aab0751273
@@ -1137,6 +1146,7 @@ files:
1137
1146
  - test/dummy/tmp/cache/assets/development/sprockets/ba3e3300ec31e447a559f1d75a94a037
1138
1147
  - test/dummy/tmp/cache/assets/development/sprockets/ba3fa75a233f5850cdf2362852f1d155
1139
1148
  - test/dummy/tmp/cache/assets/development/sprockets/ba41d761ded85fc461ab0cabbeaef53e
1149
+ - test/dummy/tmp/cache/assets/development/sprockets/ba56eb60d599a0ca3d2f6b67772774c2
1140
1150
  - test/dummy/tmp/cache/assets/development/sprockets/ba6e5d1a9a4fc6dc829ce43067fac3fc
1141
1151
  - test/dummy/tmp/cache/assets/development/sprockets/ba83646bf2099832ad8ac75379b763df
1142
1152
  - test/dummy/tmp/cache/assets/development/sprockets/baa3b6bd36e5d9f39001d23e198a36bf
@@ -1247,6 +1257,7 @@ files:
1247
1257
  - test/dummy/tmp/cache/assets/development/sprockets/cfc4598f900a2df320faacc9ac0b3d32
1248
1258
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
1249
1259
  - test/dummy/tmp/cache/assets/development/sprockets/d03302b631fce38080291ead52191d30
1260
+ - test/dummy/tmp/cache/assets/development/sprockets/d09e190e75f7ec3bc98994e13a005699
1250
1261
  - test/dummy/tmp/cache/assets/development/sprockets/d1262bac9dd8d8f50a1a9b976b016820
1251
1262
  - test/dummy/tmp/cache/assets/development/sprockets/d1c0d26d7f806f788b0a19d067e768a3
1252
1263
  - test/dummy/tmp/cache/assets/development/sprockets/d1e8163bdc56168fb4b10a08b4dd9d5e
@@ -1482,6 +1493,7 @@ files:
1482
1493
  - test/dummy/tmp/cache/assets/development/sprockets/ff61dbc17d234bd987651f689838d26a
1483
1494
  - test/dummy/tmp/cache/assets/development/sprockets/ffdb359321552b05439e0337844f817d
1484
1495
  - test/dummy/tmp/cache/assets/development/sprockets/fffa8f692e900a66d630702707280ecc
1496
+ - test/dummy/tmp/pids/server.pid
1485
1497
  - test/fixtures/polyblock/blocks.yml
1486
1498
  - test/helpers/polyblock/polyblocks_helper_test.rb
1487
1499
  - test/integration/navigation_test.rb
@@ -1514,21 +1526,21 @@ summary: Polymorphic content blocks made simple.
1514
1526
  test_files:
1515
1527
  - test/controllers/polyblock/polyblocks_controller_test.rb
1516
1528
  - test/dummy/app/assets/javascripts/application.js
1529
+ - test/dummy/app/assets/javascripts/events.js
1517
1530
  - test/dummy/app/assets/javascripts/home.js
1518
- - test/dummy/app/assets/javascripts/parents.js
1519
1531
  - test/dummy/app/assets/stylesheets/application.css
1532
+ - test/dummy/app/assets/stylesheets/events.css
1520
1533
  - test/dummy/app/assets/stylesheets/home.css
1521
- - test/dummy/app/assets/stylesheets/parents.css
1522
1534
  - test/dummy/app/controllers/application_controller.rb
1535
+ - test/dummy/app/controllers/events_controller.rb
1523
1536
  - test/dummy/app/controllers/home_controller.rb
1524
- - test/dummy/app/controllers/parents_controller.rb
1525
1537
  - test/dummy/app/helpers/application_helper.rb
1538
+ - test/dummy/app/helpers/events_helper.rb
1526
1539
  - test/dummy/app/helpers/home_helper.rb
1527
- - test/dummy/app/helpers/parents_helper.rb
1528
1540
  - test/dummy/app/models/ckeditor/asset.rb
1529
1541
  - test/dummy/app/models/ckeditor/attachment_file.rb
1530
1542
  - test/dummy/app/models/ckeditor/picture.rb
1531
- - test/dummy/app/models/parent.rb
1543
+ - test/dummy/app/models/event.rb
1532
1544
  - test/dummy/app/views/home/index.html.haml
1533
1545
  - test/dummy/app/views/layouts/application.html.erb
1534
1546
  - test/dummy/bin/bundle
@@ -1555,7 +1567,9 @@ test_files:
1555
1567
  - test/dummy/db/development.sqlite3
1556
1568
  - test/dummy/db/migrate/20140107201539_create_ckeditor_assets.rb
1557
1569
  - test/dummy/db/migrate/20140107201540_create_polyblock_blocks.rb
1570
+ - test/dummy/db/migrate/20140121144352_create_events.rb
1558
1571
  - test/dummy/db/schema.rb
1572
+ - test/dummy/db/test.sqlite3
1559
1573
  - test/dummy/log/development.log
1560
1574
  - test/dummy/public/404.html
1561
1575
  - test/dummy/public/422.html
@@ -1563,12 +1577,12 @@ test_files:
1563
1577
  - test/dummy/public/favicon.ico
1564
1578
  - test/dummy/Rakefile
1565
1579
  - test/dummy/README.rdoc
1580
+ - test/dummy/test/controllers/events_controller_test.rb
1566
1581
  - test/dummy/test/controllers/home_controller_test.rb
1567
- - test/dummy/test/controllers/parents_controller_test.rb
1568
- - test/dummy/test/fixtures/parents.yml
1582
+ - test/dummy/test/fixtures/events.yml
1583
+ - test/dummy/test/helpers/events_helper_test.rb
1569
1584
  - test/dummy/test/helpers/home_helper_test.rb
1570
- - test/dummy/test/helpers/parents_helper_test.rb
1571
- - test/dummy/test/models/parent_test.rb
1585
+ - test/dummy/test/models/event_test.rb
1572
1586
  - test/dummy/tmp/cache/assets/development/sprockets/00929e7c32e73d0337dca39af60c0fe1
1573
1587
  - test/dummy/tmp/cache/assets/development/sprockets/0093d60995313a6bf33ae97a8b4c74bb
1574
1588
  - test/dummy/tmp/cache/assets/development/sprockets/017455054e706e74f7c6201072541b35
@@ -1701,8 +1715,10 @@ test_files:
1701
1715
  - test/dummy/tmp/cache/assets/development/sprockets/1dcf2f066cb7d1f61053762f665026f0
1702
1716
  - test/dummy/tmp/cache/assets/development/sprockets/1dffad877a8f904c10a6b9494366d338
1703
1717
  - test/dummy/tmp/cache/assets/development/sprockets/1e0b2e107f8dd97c45cab82888dd8f6a
1718
+ - test/dummy/tmp/cache/assets/development/sprockets/1e1c73f8892119a4dbc6ead7718b4472
1704
1719
  - test/dummy/tmp/cache/assets/development/sprockets/1e275bc3b7702d36d48aa2b70428ad2b
1705
1720
  - test/dummy/tmp/cache/assets/development/sprockets/1e500bc6b21987abafff3290008bbccd
1721
+ - test/dummy/tmp/cache/assets/development/sprockets/1eacdbb3be88857a9387909bc1ae555c
1706
1722
  - test/dummy/tmp/cache/assets/development/sprockets/1ee0990a88590660997e970db7510095
1707
1723
  - test/dummy/tmp/cache/assets/development/sprockets/1eeb828973d38ac019484de910989d1a
1708
1724
  - test/dummy/tmp/cache/assets/development/sprockets/1f4cc72239dd72e3ad61e7247427b8ae
@@ -1734,6 +1750,7 @@ test_files:
1734
1750
  - test/dummy/tmp/cache/assets/development/sprockets/22bb07ddf38b4af9de81863e91635c87
1735
1751
  - test/dummy/tmp/cache/assets/development/sprockets/22c14319c3f09fc0c6666344d52e6ee4
1736
1752
  - test/dummy/tmp/cache/assets/development/sprockets/23015e602f3a9105122f068e33c245f6
1753
+ - test/dummy/tmp/cache/assets/development/sprockets/23a02f793bdc3b6a6cbd015f184c6f6c
1737
1754
  - test/dummy/tmp/cache/assets/development/sprockets/23bb6117970efddcefddabe78efbb5af
1738
1755
  - test/dummy/tmp/cache/assets/development/sprockets/23c5b1ec71d2803d9718bd7ee749ed06
1739
1756
  - test/dummy/tmp/cache/assets/development/sprockets/240f882fd09e90fb9a8491a79bd20a6f
@@ -1795,6 +1812,7 @@ test_files:
1795
1812
  - test/dummy/tmp/cache/assets/development/sprockets/30372050d03c549f832d0a229f054a09
1796
1813
  - test/dummy/tmp/cache/assets/development/sprockets/306e7cf0d3fc26fc08fc19f5501e849c
1797
1814
  - test/dummy/tmp/cache/assets/development/sprockets/309a0148dfcef413869954f9c9126733
1815
+ - test/dummy/tmp/cache/assets/development/sprockets/30e3552cad42917377b8675173b87d6d
1798
1816
  - test/dummy/tmp/cache/assets/development/sprockets/3105a0833af87dbcd24616a1aa326624
1799
1817
  - test/dummy/tmp/cache/assets/development/sprockets/31242785b0b30c2926a0a001ba15c37b
1800
1818
  - test/dummy/tmp/cache/assets/development/sprockets/3160cace1fcfc449a032b045eb1521d1
@@ -2034,6 +2052,7 @@ test_files:
2034
2052
  - test/dummy/tmp/cache/assets/development/sprockets/6565732d0eb15299d2be567f1c351f81
2035
2053
  - test/dummy/tmp/cache/assets/development/sprockets/657f5e3f02f3b8fbd03af3eade7f0eb0
2036
2054
  - test/dummy/tmp/cache/assets/development/sprockets/65a5689d2de3f83bcc1531b0bd7918ce
2055
+ - test/dummy/tmp/cache/assets/development/sprockets/65dccf676de4439612547abc6451ba65
2037
2056
  - test/dummy/tmp/cache/assets/development/sprockets/663f93a049bd5ffa87019e82ddb725e6
2038
2057
  - test/dummy/tmp/cache/assets/development/sprockets/6679546d9cfa5822e4c0350af4ebec1d
2039
2058
  - test/dummy/tmp/cache/assets/development/sprockets/66a715b5252355fae8785a848f07890c
@@ -2054,6 +2073,7 @@ test_files:
2054
2073
  - test/dummy/tmp/cache/assets/development/sprockets/697c76529abfd36f3c87aac1434a4911
2055
2074
  - test/dummy/tmp/cache/assets/development/sprockets/697ee8b0e2af58032e833139d5caf627
2056
2075
  - test/dummy/tmp/cache/assets/development/sprockets/69937f8b7b510500d2c9eed82683d2d0
2076
+ - test/dummy/tmp/cache/assets/development/sprockets/69bda14eaa1d8ad1ea1235abb619e366
2057
2077
  - test/dummy/tmp/cache/assets/development/sprockets/69ce1a46309e81d86c0bd62edae8fa35
2058
2078
  - test/dummy/tmp/cache/assets/development/sprockets/69d55880feeb67c85a56f48d0ccd9e31
2059
2079
  - test/dummy/tmp/cache/assets/development/sprockets/69e131051c40fd2e813445aab0751273
@@ -2447,6 +2467,7 @@ test_files:
2447
2467
  - test/dummy/tmp/cache/assets/development/sprockets/ba3e3300ec31e447a559f1d75a94a037
2448
2468
  - test/dummy/tmp/cache/assets/development/sprockets/ba3fa75a233f5850cdf2362852f1d155
2449
2469
  - test/dummy/tmp/cache/assets/development/sprockets/ba41d761ded85fc461ab0cabbeaef53e
2470
+ - test/dummy/tmp/cache/assets/development/sprockets/ba56eb60d599a0ca3d2f6b67772774c2
2450
2471
  - test/dummy/tmp/cache/assets/development/sprockets/ba6e5d1a9a4fc6dc829ce43067fac3fc
2451
2472
  - test/dummy/tmp/cache/assets/development/sprockets/ba83646bf2099832ad8ac75379b763df
2452
2473
  - test/dummy/tmp/cache/assets/development/sprockets/baa3b6bd36e5d9f39001d23e198a36bf
@@ -2557,6 +2578,7 @@ test_files:
2557
2578
  - test/dummy/tmp/cache/assets/development/sprockets/cfc4598f900a2df320faacc9ac0b3d32
2558
2579
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
2559
2580
  - test/dummy/tmp/cache/assets/development/sprockets/d03302b631fce38080291ead52191d30
2581
+ - test/dummy/tmp/cache/assets/development/sprockets/d09e190e75f7ec3bc98994e13a005699
2560
2582
  - test/dummy/tmp/cache/assets/development/sprockets/d1262bac9dd8d8f50a1a9b976b016820
2561
2583
  - test/dummy/tmp/cache/assets/development/sprockets/d1c0d26d7f806f788b0a19d067e768a3
2562
2584
  - test/dummy/tmp/cache/assets/development/sprockets/d1e8163bdc56168fb4b10a08b4dd9d5e
@@ -2792,6 +2814,7 @@ test_files:
2792
2814
  - test/dummy/tmp/cache/assets/development/sprockets/ff61dbc17d234bd987651f689838d26a
2793
2815
  - test/dummy/tmp/cache/assets/development/sprockets/ffdb359321552b05439e0337844f817d
2794
2816
  - test/dummy/tmp/cache/assets/development/sprockets/fffa8f692e900a66d630702707280ecc
2817
+ - test/dummy/tmp/pids/server.pid
2795
2818
  - test/fixtures/polyblock/blocks.yml
2796
2819
  - test/helpers/polyblock/polyblocks_helper_test.rb
2797
2820
  - test/integration/navigation_test.rb
@@ -1,2 +0,0 @@
1
- class ParentsController < ApplicationController
2
- end
@@ -1,2 +0,0 @@
1
- module ParentsHelper
2
- end
@@ -1,5 +0,0 @@
1
- class Parent < ActiveRecord::Base
2
-
3
- has_polyblock :child
4
-
5
- end
@@ -1,7 +0,0 @@
1
- # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
-
3
- one:
4
- name: MyString
5
-
6
- two:
7
- name: MyString
@@ -1,4 +0,0 @@
1
- require 'test_helper'
2
-
3
- class ParentsHelperTest < ActionView::TestCase
4
- end