locomotivecms_wagon 2.4.1 → 3.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/generators/blank/app/assets/.babelrc +3 -0
  4. data/generators/blank/app/assets/fonts/.empty_directory +1 -0
  5. data/generators/blank/app/assets/javascripts/app.js +19 -0
  6. data/generators/blank/app/assets/javascripts/sections/_manager.js +94 -0
  7. data/generators/blank/app/assets/javascripts/sections/index.js +5 -0
  8. data/generators/blank/app/assets/package.json.tt +35 -0
  9. data/generators/blank/app/assets/postcss.config.js +6 -0
  10. data/generators/blank/app/assets/stylesheets/app.scss +1 -0
  11. data/generators/blank/app/assets/webpack.common.js +47 -0
  12. data/generators/blank/app/assets/webpack.dev.js +7 -0
  13. data/generators/blank/app/assets/webpack.prod.js +12 -0
  14. data/generators/blank/app/views/pages/404.liquid +1 -1
  15. data/generators/blank/app/views/pages/index.liquid +7 -15
  16. data/generators/blank/app/views/pages/layouts/default.liquid +22 -0
  17. data/generators/blank/app/views/sections/.empty_directory +1 -0
  18. data/generators/page/template.liquid.tt +11 -0
  19. data/generators/section/%type%.js.tt +26 -0
  20. data/generators/section/template.liquid.tt +183 -0
  21. data/lib/locomotive/wagon.rb +3 -2
  22. data/lib/locomotive/wagon/cli.rb +38 -10
  23. data/lib/locomotive/wagon/commands/clone_command.rb +3 -0
  24. data/lib/locomotive/wagon/commands/concerns/deploy_file_concern.rb +1 -1
  25. data/lib/locomotive/wagon/commands/concerns/steam_concern.rb +1 -1
  26. data/lib/locomotive/wagon/commands/loggers/sync_logger.rb +7 -0
  27. data/lib/locomotive/wagon/commands/pull_command.rb +1 -1
  28. data/lib/locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb +19 -10
  29. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_base_command.rb +7 -3
  30. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_entries_command.rb +11 -2
  31. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_content_types_command.rb +1 -1
  32. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb +24 -5
  33. data/lib/locomotive/wagon/commands/pull_sub_commands/pull_translations_command.rb +6 -1
  34. data/lib/locomotive/wagon/commands/push_command.rb +6 -4
  35. data/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb +6 -1
  36. data/lib/locomotive/wagon/commands/push_sub_commands/push_sections_command.rb +23 -0
  37. data/lib/locomotive/wagon/commands/push_sub_commands/push_site_command.rb +2 -0
  38. data/lib/locomotive/wagon/commands/serve_command.rb +1 -1
  39. data/lib/locomotive/wagon/commands/sync_command.rb +1 -1
  40. data/lib/locomotive/wagon/commands/sync_sub_commands/concerns/base_concern.rb +2 -2
  41. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_pages_command.rb +48 -37
  42. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_site_command.rb +15 -12
  43. data/lib/locomotive/wagon/commands/sync_sub_commands/sync_translations_command.rb +12 -0
  44. data/lib/locomotive/wagon/decorators/concerns/persist_assets_concern.rb +1 -1
  45. data/lib/locomotive/wagon/decorators/content_entry_decorator.rb +1 -1
  46. data/lib/locomotive/wagon/decorators/content_type_decorator.rb +5 -1
  47. data/lib/locomotive/wagon/decorators/content_type_field_decorator.rb +5 -1
  48. data/lib/locomotive/wagon/decorators/page_decorator.rb +11 -1
  49. data/lib/locomotive/wagon/decorators/section_decorator.rb +35 -0
  50. data/lib/locomotive/wagon/decorators/site_decorator.rb +12 -4
  51. data/lib/locomotive/wagon/decorators/theme_asset_decorator.rb +2 -2
  52. data/lib/locomotive/wagon/generators/page.rb +2 -12
  53. data/lib/locomotive/wagon/generators/section.rb +82 -0
  54. data/lib/locomotive/wagon/generators/site.rb +0 -3
  55. data/lib/locomotive/wagon/generators/site/base.rb +11 -28
  56. data/lib/locomotive/wagon/generators/site/blank.rb +1 -17
  57. data/lib/locomotive/wagon/generators/site/cloned.rb +1 -4
  58. data/lib/locomotive/wagon/generators/snippet.rb +3 -11
  59. data/lib/locomotive/wagon/middlewares/error_page.rb +26 -6
  60. data/lib/locomotive/wagon/tools/listen.rb +3 -3
  61. data/lib/locomotive/wagon/version.rb +1 -1
  62. data/locomotivecms_wagon.gemspec +7 -6
  63. data/spec/fixtures/cassettes/authenticate.yml +47 -47
  64. data/spec/fixtures/cassettes/delete.yml +261 -261
  65. data/spec/fixtures/cassettes/push.yml +4571 -1783
  66. data/spec/fixtures/cassettes/sync.yml +11483 -0
  67. data/spec/integration/cli_spec.rb +1 -1
  68. data/spec/integration/commands/delete_command_spec.rb +1 -2
  69. data/spec/integration/commands/push_command_spec.rb +4 -4
  70. data/spec/integration/commands/sync_command_spec.rb +54 -0
  71. data/spec/integration/generators/page_spec.rb +1 -1
  72. data/spec/unit/commands/pull_sub_commands/concerns/assets_concern_spec.rb +3 -3
  73. metadata +55 -306
  74. data/generators/blank/app/views/pages/404.liquid.haml +0 -11
  75. data/generators/blank/app/views/pages/index.liquid.haml +0 -16
  76. data/generators/bootstrap/Gemfile.tt +0 -24
  77. data/generators/bootstrap/Guardfile +0 -22
  78. data/generators/bootstrap/app/content_types/.empty_directory +0 -1
  79. data/generators/bootstrap/app/views/pages/404.liquid +0 -18
  80. data/generators/bootstrap/app/views/pages/404.liquid.haml +0 -14
  81. data/generators/bootstrap/app/views/pages/index.liquid +0 -31
  82. data/generators/bootstrap/app/views/pages/index.liquid.haml +0 -25
  83. data/generators/bootstrap/app/views/pages/layouts/default.liquid +0 -31
  84. data/generators/bootstrap/app/views/pages/layouts/default.liquid.haml +0 -30
  85. data/generators/bootstrap/app/views/pages/layouts/simple.liquid +0 -36
  86. data/generators/bootstrap/app/views/pages/layouts/simple.liquid.haml +0 -29
  87. data/generators/bootstrap/app/views/snippets/footer.liquid +0 -5
  88. data/generators/bootstrap/app/views/snippets/footer.liquid.haml +0 -3
  89. data/generators/bootstrap/app/views/snippets/nav.liquid +0 -26
  90. data/generators/bootstrap/app/views/snippets/nav.liquid.haml +0 -19
  91. data/generators/bootstrap/config/deploy.yml +0 -16
  92. data/generators/bootstrap/config/metafields_schema.yml +0 -56
  93. data/generators/bootstrap/config/site.yml.tt +0 -48
  94. data/generators/bootstrap/config/translations.yml +0 -8
  95. data/generators/bootstrap/data/.empty_directory +0 -1
  96. data/generators/bootstrap/icon.png +0 -0
  97. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  98. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg +0 -288
  99. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  100. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  101. data/generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  102. data/generators/bootstrap/public/images/favicon.png +0 -0
  103. data/generators/bootstrap/public/javascripts/application.js +0 -2
  104. data/generators/bootstrap/public/javascripts/bootstrap.min.js +0 -7
  105. data/generators/bootstrap/public/javascripts/bootstrap/affix.js +0 -162
  106. data/generators/bootstrap/public/javascripts/bootstrap/alert.js +0 -94
  107. data/generators/bootstrap/public/javascripts/bootstrap/button.js +0 -120
  108. data/generators/bootstrap/public/javascripts/bootstrap/carousel.js +0 -237
  109. data/generators/bootstrap/public/javascripts/bootstrap/collapse.js +0 -211
  110. data/generators/bootstrap/public/javascripts/bootstrap/dropdown.js +0 -165
  111. data/generators/bootstrap/public/javascripts/bootstrap/modal.js +0 -337
  112. data/generators/bootstrap/public/javascripts/bootstrap/popover.js +0 -108
  113. data/generators/bootstrap/public/javascripts/bootstrap/scrollspy.js +0 -172
  114. data/generators/bootstrap/public/javascripts/bootstrap/tab.js +0 -155
  115. data/generators/bootstrap/public/javascripts/bootstrap/tooltip.js +0 -514
  116. data/generators/bootstrap/public/javascripts/bootstrap/transition.js +0 -59
  117. data/generators/bootstrap/public/javascripts/jquery.min.js +0 -5
  118. data/generators/bootstrap/public/stylesheets/application.css +0 -7
  119. data/generators/bootstrap/public/stylesheets/application.scss +0 -7
  120. data/generators/bootstrap/public/stylesheets/bootstrap.css +0 -5
  121. data/generators/bootstrap/public/stylesheets/bootstrap.scss +0 -63
  122. data/generators/bootstrap/public/stylesheets/bootstrap/_alerts.scss +0 -73
  123. data/generators/bootstrap/public/stylesheets/bootstrap/_badges.scss +0 -68
  124. data/generators/bootstrap/public/stylesheets/bootstrap/_breadcrumbs.scss +0 -28
  125. data/generators/bootstrap/public/stylesheets/bootstrap/_button-groups.scss +0 -244
  126. data/generators/bootstrap/public/stylesheets/bootstrap/_buttons.scss +0 -168
  127. data/generators/bootstrap/public/stylesheets/bootstrap/_carousel.scss +0 -269
  128. data/generators/bootstrap/public/stylesheets/bootstrap/_close.scss +0 -36
  129. data/generators/bootstrap/public/stylesheets/bootstrap/_code.scss +0 -69
  130. data/generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss +0 -37
  131. data/generators/bootstrap/public/stylesheets/bootstrap/_dropdowns.scss +0 -216
  132. data/generators/bootstrap/public/stylesheets/bootstrap/_forms.scss +0 -611
  133. data/generators/bootstrap/public/stylesheets/bootstrap/_glyphicons.scss +0 -307
  134. data/generators/bootstrap/public/stylesheets/bootstrap/_grid.scss +0 -84
  135. data/generators/bootstrap/public/stylesheets/bootstrap/_input-groups.scss +0 -167
  136. data/generators/bootstrap/public/stylesheets/bootstrap/_jumbotron.scss +0 -52
  137. data/generators/bootstrap/public/stylesheets/bootstrap/_labels.scss +0 -66
  138. data/generators/bootstrap/public/stylesheets/bootstrap/_list-group.scss +0 -130
  139. data/generators/bootstrap/public/stylesheets/bootstrap/_media.scss +0 -66
  140. data/generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss +0 -40
  141. data/generators/bootstrap/public/stylesheets/bootstrap/_modals.scss +0 -150
  142. data/generators/bootstrap/public/stylesheets/bootstrap/_navbar.scss +0 -662
  143. data/generators/bootstrap/public/stylesheets/bootstrap/_navs.scss +0 -242
  144. data/generators/bootstrap/public/stylesheets/bootstrap/_normalize.scss +0 -424
  145. data/generators/bootstrap/public/stylesheets/bootstrap/_pager.scss +0 -54
  146. data/generators/bootstrap/public/stylesheets/bootstrap/_pagination.scss +0 -89
  147. data/generators/bootstrap/public/stylesheets/bootstrap/_panels.scss +0 -271
  148. data/generators/bootstrap/public/stylesheets/bootstrap/_popovers.scss +0 -131
  149. data/generators/bootstrap/public/stylesheets/bootstrap/_print.scss +0 -101
  150. data/generators/bootstrap/public/stylesheets/bootstrap/_progress-bars.scss +0 -87
  151. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss +0 -35
  152. data/generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss +0 -179
  153. data/generators/bootstrap/public/stylesheets/bootstrap/_scaffolding.scss +0 -161
  154. data/generators/bootstrap/public/stylesheets/bootstrap/_tables.scss +0 -234
  155. data/generators/bootstrap/public/stylesheets/bootstrap/_theme.scss +0 -291
  156. data/generators/bootstrap/public/stylesheets/bootstrap/_thumbnails.scss +0 -38
  157. data/generators/bootstrap/public/stylesheets/bootstrap/_tooltip.scss +0 -101
  158. data/generators/bootstrap/public/stylesheets/bootstrap/_type.scss +0 -298
  159. data/generators/bootstrap/public/stylesheets/bootstrap/_utilities.scss +0 -55
  160. data/generators/bootstrap/public/stylesheets/bootstrap/_variables.scss +0 -872
  161. data/generators/bootstrap/public/stylesheets/bootstrap/_wells.scss +0 -29
  162. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss +0 -14
  163. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss +0 -12
  164. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss +0 -18
  165. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss +0 -68
  166. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss +0 -7
  167. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss +0 -22
  168. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss +0 -88
  169. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss +0 -58
  170. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
  171. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss +0 -122
  172. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss +0 -21
  173. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss +0 -33
  174. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss +0 -12
  175. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss +0 -32
  176. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -10
  177. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +0 -9
  178. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss +0 -8
  179. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss +0 -24
  180. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss +0 -24
  181. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss +0 -10
  182. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss +0 -8
  183. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss +0 -18
  184. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss +0 -6
  185. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss +0 -21
  186. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss +0 -10
  187. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss +0 -9
  188. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss +0 -28
  189. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -12
  190. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss +0 -8
  191. data/generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +0 -222
  192. data/generators/foundation/Gemfile.tt +0 -24
  193. data/generators/foundation/Guardfile +0 -22
  194. data/generators/foundation/app/content_types/.gitkeep +0 -0
  195. data/generators/foundation/app/views/pages/404.liquid +0 -11
  196. data/generators/foundation/app/views/pages/404.liquid.haml +0 -11
  197. data/generators/foundation/app/views/pages/index.liquid +0 -172
  198. data/generators/foundation/app/views/pages/index.liquid.haml +0 -144
  199. data/generators/foundation/app/views/snippets/.gitkeep +0 -0
  200. data/generators/foundation/config/deploy.yml +0 -16
  201. data/generators/foundation/config/metafields_schema.yml +0 -56
  202. data/generators/foundation/config/site.yml +0 -48
  203. data/generators/foundation/config/translations.yml +0 -8
  204. data/generators/foundation/data/.gitkeep +0 -0
  205. data/generators/foundation/log/.gitkeep +0 -0
  206. data/generators/foundation/public/images/.gitkeep +0 -0
  207. data/generators/foundation/public/javascripts/app.js +0 -1
  208. data/generators/foundation/public/javascripts/vendor/foundation.js +0 -11788
  209. data/generators/foundation/public/javascripts/vendor/foundation.min.js +0 -5
  210. data/generators/foundation/public/javascripts/vendor/what-input.js +0 -212
  211. data/generators/foundation/public/javascripts/vendor/what-input.min.js +0 -1
  212. data/generators/foundation/public/stylesheets/_settings.scss +0 -869
  213. data/generators/foundation/public/stylesheets/app.css +0 -0
  214. data/generators/foundation/public/stylesheets/app.scss +0 -52
  215. data/generators/foundation/public/stylesheets/foundation.css +0 -5805
  216. data/generators/foundation/public/stylesheets/foundation6/_global.scss +0 -249
  217. data/generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss +0 -171
  218. data/generators/foundation/public/stylesheets/foundation6/components/_accordion.scss +0 -155
  219. data/generators/foundation/public/stylesheets/foundation6/components/_badge.scss +0 -63
  220. data/generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss +0 -117
  221. data/generators/foundation/public/stylesheets/foundation6/components/_button-group.scss +0 -253
  222. data/generators/foundation/public/stylesheets/foundation6/components/_button.scss +0 -385
  223. data/generators/foundation/public/stylesheets/foundation6/components/_callout.scss +0 -106
  224. data/generators/foundation/public/stylesheets/foundation6/components/_card.scss +0 -129
  225. data/generators/foundation/public/stylesheets/foundation6/components/_close-button.scss +0 -102
  226. data/generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss +0 -142
  227. data/generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss +0 -274
  228. data/generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss +0 -79
  229. data/generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss +0 -1
  230. data/generators/foundation/public/stylesheets/foundation6/components/_flex.scss +0 -117
  231. data/generators/foundation/public/stylesheets/foundation6/components/_float.scss +0 -27
  232. data/generators/foundation/public/stylesheets/foundation6/components/_label.scss +0 -64
  233. data/generators/foundation/public/stylesheets/foundation6/components/_media-object.scss +0 -114
  234. data/generators/foundation/public/stylesheets/foundation6/components/_menu-icon.scss +0 -9
  235. data/generators/foundation/public/stylesheets/foundation6/components/_menu.scss +0 -495
  236. data/generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss +0 -505
  237. data/generators/foundation/public/stylesheets/foundation6/components/_orbit.scss +0 -196
  238. data/generators/foundation/public/stylesheets/foundation6/components/_pagination.scss +0 -193
  239. data/generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss +0 -64
  240. data/generators/foundation/public/stylesheets/foundation6/components/_responsive-embed.scss +0 -70
  241. data/generators/foundation/public/stylesheets/foundation6/components/_reveal.scss +0 -180
  242. data/generators/foundation/public/stylesheets/foundation6/components/_slider.scss +0 -137
  243. data/generators/foundation/public/stylesheets/foundation6/components/_sticky.scss +0 -39
  244. data/generators/foundation/public/stylesheets/foundation6/components/_switch.scss +0 -247
  245. data/generators/foundation/public/stylesheets/foundation6/components/_table.scss +0 -330
  246. data/generators/foundation/public/stylesheets/foundation6/components/_tabs.scss +0 -196
  247. data/generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss +0 -67
  248. data/generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss +0 -84
  249. data/generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss +0 -160
  250. data/generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss +0 -175
  251. data/generators/foundation/public/stylesheets/foundation6/components/_visibility.scss +0 -132
  252. data/generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss +0 -41
  253. data/generators/foundation/public/stylesheets/foundation6/forms/_error.scss +0 -88
  254. data/generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss +0 -53
  255. data/generators/foundation/public/stylesheets/foundation6/forms/_forms.scss +0 -34
  256. data/generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss +0 -30
  257. data/generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss +0 -142
  258. data/generators/foundation/public/stylesheets/foundation6/forms/_label.scss +0 -50
  259. data/generators/foundation/public/stylesheets/foundation6/forms/_meter.scss +0 -116
  260. data/generators/foundation/public/stylesheets/foundation6/forms/_progress.scss +0 -94
  261. data/generators/foundation/public/stylesheets/foundation6/forms/_range.scss +0 -149
  262. data/generators/foundation/public/stylesheets/foundation6/forms/_select.scss +0 -86
  263. data/generators/foundation/public/stylesheets/foundation6/forms/_text.scss +0 -179
  264. data/generators/foundation/public/stylesheets/foundation6/foundation.scss +0 -133
  265. data/generators/foundation/public/stylesheets/foundation6/grid/_classes.scss +0 -176
  266. data/generators/foundation/public/stylesheets/foundation6/grid/_column.scss +0 -112
  267. data/generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss +0 -259
  268. data/generators/foundation/public/stylesheets/foundation6/grid/_grid.scss +0 -48
  269. data/generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss +0 -82
  270. data/generators/foundation/public/stylesheets/foundation6/grid/_layout.scss +0 -76
  271. data/generators/foundation/public/stylesheets/foundation6/grid/_position.scss +0 -76
  272. data/generators/foundation/public/stylesheets/foundation6/grid/_row.scss +0 -99
  273. data/generators/foundation/public/stylesheets/foundation6/grid/_size.scss +0 -24
  274. data/generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss +0 -109
  275. data/generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss +0 -61
  276. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss +0 -32
  277. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss +0 -65
  278. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss +0 -15
  279. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss +0 -41
  280. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss +0 -28
  281. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss +0 -13
  282. data/generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss +0 -15
  283. data/generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss +0 -29
  284. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss +0 -28
  285. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss +0 -43
  286. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss +0 -42
  287. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss +0 -39
  288. data/generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss +0 -39
  289. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss +0 -7
  290. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss +0 -15
  291. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss +0 -136
  292. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss +0 -23
  293. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss +0 -54
  294. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss +0 -45
  295. data/generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss +0 -7
  296. data/generators/foundation/public/stylesheets/foundation6/prototype/_arrow.scss +0 -36
  297. data/generators/foundation/public/stylesheets/foundation6/prototype/_border-box.scss +0 -35
  298. data/generators/foundation/public/stylesheets/foundation6/prototype/_border-none.scss +0 -35
  299. data/generators/foundation/public/stylesheets/foundation6/prototype/_bordered.scss +0 -54
  300. data/generators/foundation/public/stylesheets/foundation6/prototype/_box.scss +0 -23
  301. data/generators/foundation/public/stylesheets/foundation6/prototype/_display.scss +0 -50
  302. data/generators/foundation/public/stylesheets/foundation6/prototype/_font-styling.scss +0 -95
  303. data/generators/foundation/public/stylesheets/foundation6/prototype/_list-style-type.scss +0 -95
  304. data/generators/foundation/public/stylesheets/foundation6/prototype/_overflow.scss +0 -72
  305. data/generators/foundation/public/stylesheets/foundation6/prototype/_position.scss +0 -114
  306. data/generators/foundation/public/stylesheets/foundation6/prototype/_prototype.scss +0 -87
  307. data/generators/foundation/public/stylesheets/foundation6/prototype/_relation.scss +0 -157
  308. data/generators/foundation/public/stylesheets/foundation6/prototype/_rotate.scss +0 -31
  309. data/generators/foundation/public/stylesheets/foundation6/prototype/_rounded.scss +0 -54
  310. data/generators/foundation/public/stylesheets/foundation6/prototype/_separator.scss +0 -96
  311. data/generators/foundation/public/stylesheets/foundation6/prototype/_shadow.scss +0 -43
  312. data/generators/foundation/public/stylesheets/foundation6/prototype/_sizing.scss +0 -73
  313. data/generators/foundation/public/stylesheets/foundation6/prototype/_spacing.scss +0 -204
  314. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-decoration.scss +0 -48
  315. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-transformation.scss +0 -48
  316. data/generators/foundation/public/stylesheets/foundation6/prototype/_text-utilities.scss +0 -88
  317. data/generators/foundation/public/stylesheets/foundation6/settings/_settings.scss +0 -869
  318. data/generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss +0 -22
  319. data/generators/foundation/public/stylesheets/foundation6/typography/_base.scss +0 -509
  320. data/generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss +0 -80
  321. data/generators/foundation/public/stylesheets/foundation6/typography/_print.scss +0 -86
  322. data/generators/foundation/public/stylesheets/foundation6/typography/_typography.scss +0 -26
  323. data/generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss +0 -348
  324. data/generators/foundation/public/stylesheets/foundation6/util/_color.scss +0 -129
  325. data/generators/foundation/public/stylesheets/foundation6/util/_direction.scss +0 -31
  326. data/generators/foundation/public/stylesheets/foundation6/util/_flex.scss +0 -85
  327. data/generators/foundation/public/stylesheets/foundation6/util/_math.scss +0 -72
  328. data/generators/foundation/public/stylesheets/foundation6/util/_mixins.scss +0 -313
  329. data/generators/foundation/public/stylesheets/foundation6/util/_selector.scss +0 -41
  330. data/generators/foundation/public/stylesheets/foundation6/util/_typography.scss +0 -26
  331. data/generators/foundation/public/stylesheets/foundation6/util/_unit.scss +0 -152
  332. data/generators/foundation/public/stylesheets/foundation6/util/_util.scss +0 -14
  333. data/generators/foundation/public/stylesheets/foundation6/util/_value.scss +0 -160
  334. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/_normalize.scss +0 -3
  335. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_import-now.scss +0 -11
  336. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +0 -676
  337. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_variables.scss +0 -36
  338. data/generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +0 -61
  339. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_contain.scss +0 -31
  340. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_purge.scss +0 -38
  341. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_remove.scss +0 -31
  342. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_replace.scss +0 -46
  343. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_to-list.scss +0 -27
  344. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +0 -25
  345. data/generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_true.scss +0 -13
  346. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_cell.scss +0 -169
  347. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_classes.scss +0 -476
  348. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_collapse.scss +0 -74
  349. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_frame.scss +0 -85
  350. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_grid.scss +0 -35
  351. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_gutters.scss +0 -45
  352. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_layout.scss +0 -33
  353. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_position.scss +0 -28
  354. data/generators/foundation/public/stylesheets/foundation6/xy-grid/_xy-grid.scss +0 -51
  355. data/generators/page/template.liquid.haml.tt +0 -47
  356. data/generators/snippet/template.liquid.haml.tt +0 -4
  357. data/lib/locomotive/wagon/generators/site/bootstrap.rb +0 -52
  358. data/lib/locomotive/wagon/generators/site/foundation.rb +0 -44
  359. data/lib/locomotive/wagon/generators/site/line_case.rb +0 -20
@@ -10,7 +10,7 @@ describe Locomotive::Wagon::CLI do
10
10
  describe '#version' do
11
11
 
12
12
  let(:command) { Locomotive::Wagon::CLI::Main.start(['version']) }
13
- it { is_expected.to match /^2.4/ }
13
+ it { is_expected.to match /^3.0.0/ }
14
14
 
15
15
  end
16
16
 
@@ -6,7 +6,7 @@ require 'thor'
6
6
 
7
7
  describe Locomotive::Wagon::DeleteCommand do
8
8
 
9
- before { VCR.insert_cassette 'delete', record: :new_episodes, match_requests_on: [:method, :uri, :body] }
9
+ before { VCR.insert_cassette 'delete', record: :new_episodes, match_requests_on: [:method, :uri, :body, :headers] }
10
10
  after { VCR.eject_cassette }
11
11
 
12
12
  let(:env) { 'production' }
@@ -21,7 +21,6 @@ describe Locomotive::Wagon::DeleteCommand do
21
21
  allow_any_instance_of(described_class).to receive(:read_deploy_settings).and_return({})
22
22
  allow_any_instance_of(described_class).to receive(:api_site_client)
23
23
  .and_return(client_api)
24
-
25
24
  end
26
25
 
27
26
  describe 'delete the current site' do
@@ -6,7 +6,7 @@ require 'thor'
6
6
 
7
7
  describe Locomotive::Wagon::PushCommand do
8
8
 
9
- before { VCR.insert_cassette 'push', match_requests_on: [:uri, :method, :query, :body] }
9
+ before { VCR.insert_cassette 'push', match_requests_on: [:uri, :method, :query, :body, :headers] }
10
10
  after { VCR.eject_cassette }
11
11
 
12
12
  let(:env) { 'production' }
@@ -26,7 +26,7 @@ describe Locomotive::Wagon::PushCommand do
26
26
 
27
27
  before do
28
28
  allow(Netrc).to receive(:read).and_return(TEST_PLATFORM_ALT_URL => credentials)
29
- allow(shell).to receive(:ask).with("What is the URL of your platform? (default: http://locomotive.works)").and_return(TEST_PLATFORM_URL)
29
+ allow(shell).to receive(:ask).with("What is the URL of your platform? (default: https://station.locomotive.works)").and_return(TEST_PLATFORM_URL)
30
30
  allow(shell).to receive(:ask).with('What is the handle of your site? (default: a random one)').and_return('wagon-test')
31
31
  end
32
32
 
@@ -38,14 +38,14 @@ describe Locomotive::Wagon::PushCommand do
38
38
  resources << payload[:name]
39
39
  end
40
40
  is_expected.not_to eq nil
41
- expect(resources).to eq %w(site content_types content_entries pages snippets theme_assets translations)
41
+ expect(resources).to eq %w(site content_types content_entries pages snippets sections theme_assets translations)
42
42
  end
43
43
 
44
44
  context 'no previous authentication' do
45
45
 
46
46
  let(:credentials) { nil }
47
47
 
48
- it { expect { subject }.to raise_error('You need to run wagon authenticate before going further') }
48
+ it { expect { subject }.to raise_error('You need to run `wagon auth` before going further') }
49
49
 
50
50
  end
51
51
 
@@ -0,0 +1,54 @@
1
+ # encoding: utf-8
2
+
3
+ require File.dirname(__FILE__) + '/../integration_helper'
4
+ require 'locomotive/wagon/commands/push_command'
5
+ require 'locomotive/wagon/commands/sync_command'
6
+ require 'thor'
7
+
8
+ describe Locomotive::Wagon::SyncCommand do
9
+
10
+ before { Locomotive::Steam::Adapters::Filesystem::SimpleCacheStore.new.clear }
11
+
12
+ before { VCR.insert_cassette 'sync', match_requests_on: [:uri, :method, :query, :body, :headers] }
13
+ after { VCR.eject_cassette }
14
+
15
+ let(:env) { 'hosting-sync' }
16
+ let(:path) { default_site_path }
17
+ let(:shell) { Thor::Shell::Color.new }
18
+ let(:options) { { verbose: true } }
19
+ let(:command) { described_class.new(env, path, options, shell) }
20
+
21
+ describe '#sync' do
22
+
23
+ before { create_site }
24
+ after do
25
+ restore_deploy_file(default_site_path)
26
+ FileUtils.rm_rf(File.join(data_path))
27
+ FileUtils.rm_rf(File.join(assets_path))
28
+ end
29
+
30
+ let(:data_path) { File.join(default_site_path, 'data', 'hosting-sync') }
31
+ let(:assets_path) { File.join(default_site_path, 'public', 'samples', '_hosting-sync') }
32
+
33
+ subject { command.sync }
34
+
35
+ it 'exports the content of a site, content entries and pages' do
36
+ is_expected.not_to eq nil
37
+ expect(File.exists?(File.join(data_path, 'site.json'))).to eq true
38
+ expect(File.exists?(File.join(data_path, 'content_entries', 'bands.yml'))).to eq true
39
+ %w(fr nb en).each do |locale|
40
+ expect(File.exists?(File.join(data_path, 'pages', locale, 'index.json'))).to eq true
41
+ end
42
+ end
43
+
44
+ end
45
+
46
+ def create_site
47
+ credentials = instance_double('Credentials', login: TEST_API_EMAIL, password: TEST_API_KEY)
48
+ allow(Netrc).to receive(:read).and_return(TEST_PLATFORM_ALT_URL => credentials)
49
+ expect(shell).to receive(:ask).with("What is the URL of your platform? (default: https://station.locomotive.works)").and_return(TEST_PLATFORM_URL)
50
+ expect(shell).to receive(:ask).with('What is the handle of your site? (default: a random one)').and_return('wagon-test-sync')
51
+ Locomotive::Wagon::PushCommand.push(env, path, { data: true, verbose: false }, shell)
52
+ end
53
+
54
+ end
@@ -14,7 +14,7 @@ describe 'Locomotive::Wagon::Generators::Page' do
14
14
  let(:fullpath) { 'new-page' }
15
15
  let(:default_locales) { ['en', 'fr'] }
16
16
  let(:locales) { nil }
17
- let(:page_options) { { haml: false, locales: locales, default_locales: default_locales } }
17
+ let(:page_options) { { locales: locales, default_locales: default_locales } }
18
18
  let(:options) { { 'force_color' => true, 'path' => path, 'quiet' => true }.merge(page_options) }
19
19
 
20
20
  subject { Locomotive::Wagon.generate(:page, [fullpath, options.delete('path')], options) }
@@ -8,7 +8,7 @@ require 'locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern'
8
8
 
9
9
  describe Locomotive::Wagon::AssetsConcern do
10
10
 
11
- let(:concern) { Class.new { include Locomotive::Wagon::AssetsConcern; def path; 'tmp'; end; } }
11
+ let(:concern) { Class.new { include Locomotive::Wagon::AssetsConcern; def path; 'tmp'; end; def env; 'production'; end; } }
12
12
 
13
13
  describe "calling replace_asset_urls" do
14
14
 
@@ -39,8 +39,8 @@ describe Locomotive::Wagon::AssetsConcern do
39
39
  subject { instance.replace_asset_urls(content) }
40
40
 
41
41
  it 'removes the query string' do
42
- expect(instance).to receive(:write_asset).with("https://somedomain.com/sites/51277e8fc0864503db000007/assets/532a8eeac086452e35000169/some_name.JPG?42", "tmp/public/samples/assets/some_name.JPG").and_return('some_name.JPG')
43
- is_expected.to eq %(<td><img src="/samples/assets/some_name.JPG" /></td>)
42
+ expect(instance).to receive(:write_asset).with("https://somedomain.com/sites/51277e8fc0864503db000007/assets/532a8eeac086452e35000169/some_name.JPG?42", "tmp/public/samples/_production/assets/some_name.JPG").and_return('some_name.JPG')
43
+ is_expected.to eq %(<td><img src="/samples/_production/assets/some_name.JPG" /></td>)
44
44
  end
45
45
 
46
46
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: locomotivecms_wagon
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 3.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Didier Lafforgue
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-11-15 00:00:00.000000000 Z
12
+ date: 2019-03-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -45,84 +45,84 @@ dependencies:
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: 1.7.0
48
+ version: 1.7.2
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 1.7.0
55
+ version: 1.7.2
56
56
  - !ruby/object:Gem::Dependency
57
- name: rubyzip
57
+ name: netrc
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: 1.2.1
62
+ version: 0.11.0
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: 1.2.1
69
+ version: 0.11.0
70
70
  - !ruby/object:Gem::Dependency
71
- name: netrc
71
+ name: oj
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: 0.11.0
76
+ version: 3.7.11
77
77
  type: :runtime
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: 0.11.0
83
+ version: 3.7.11
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: locomotivecms_common
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: 0.3.0
90
+ version: 0.3.1
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: 0.3.0
97
+ version: 0.3.1
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: locomotivecms_coal
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: 1.5.1
104
+ version: 1.6.0.beta1
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: 1.5.1
111
+ version: 1.6.0.beta1
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: locomotivecms_steam
114
114
  requirement: !ruby/object:Gem::Requirement
115
115
  requirements:
116
116
  - - "~>"
117
117
  - !ruby/object:Gem::Version
118
- version: 1.4.1
118
+ version: 1.5.0.beta3
119
119
  type: :runtime
120
120
  prerelease: false
121
121
  version_requirements: !ruby/object:Gem::Requirement
122
122
  requirements:
123
123
  - - "~>"
124
124
  - !ruby/object:Gem::Version
125
- version: 1.4.1
125
+ version: 1.5.0.beta3
126
126
  - !ruby/object:Gem::Dependency
127
127
  name: haml
128
128
  requirement: !ruby/object:Gem::Requirement
@@ -165,6 +165,20 @@ dependencies:
165
165
  - - "~>"
166
166
  - !ruby/object:Gem::Version
167
167
  version: 0.3.16
168
+ - !ruby/object:Gem::Dependency
169
+ name: neatjson
170
+ requirement: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - "~>"
173
+ - !ruby/object:Gem::Version
174
+ version: 0.8.4
175
+ type: :runtime
176
+ prerelease: false
177
+ version_requirements: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: 0.8.4
168
182
  - !ruby/object:Gem::Dependency
169
183
  name: faker
170
184
  requirement: !ruby/object:Gem::Requirement
@@ -199,11 +213,22 @@ files:
199
213
  - bin/wagon
200
214
  - generators/blank/Gemfile.tt
201
215
  - generators/blank/Guardfile
216
+ - generators/blank/app/assets/.babelrc
217
+ - generators/blank/app/assets/fonts/.empty_directory
218
+ - generators/blank/app/assets/javascripts/app.js
219
+ - generators/blank/app/assets/javascripts/sections/_manager.js
220
+ - generators/blank/app/assets/javascripts/sections/index.js
221
+ - generators/blank/app/assets/package.json.tt
222
+ - generators/blank/app/assets/postcss.config.js
223
+ - generators/blank/app/assets/stylesheets/app.scss
224
+ - generators/blank/app/assets/webpack.common.js
225
+ - generators/blank/app/assets/webpack.dev.js
226
+ - generators/blank/app/assets/webpack.prod.js
202
227
  - generators/blank/app/content_types/.empty_directory
203
228
  - generators/blank/app/views/pages/404.liquid
204
- - generators/blank/app/views/pages/404.liquid.haml
205
229
  - generators/blank/app/views/pages/index.liquid
206
- - generators/blank/app/views/pages/index.liquid.haml
230
+ - generators/blank/app/views/pages/layouts/default.liquid
231
+ - generators/blank/app/views/sections/.empty_directory
207
232
  - generators/blank/app/views/snippets/.empty_directory
208
233
  - generators/blank/config/deploy.yml
209
234
  - generators/blank/config/metafields_schema.yml
@@ -215,122 +240,6 @@ files:
215
240
  - generators/blank/public/javascripts/.empty_directory
216
241
  - generators/blank/public/samples/.empty_directory
217
242
  - generators/blank/public/stylesheets/.empty_directory
218
- - generators/bootstrap/Gemfile.tt
219
- - generators/bootstrap/Guardfile
220
- - generators/bootstrap/app/content_types/.empty_directory
221
- - generators/bootstrap/app/views/pages/404.liquid
222
- - generators/bootstrap/app/views/pages/404.liquid.haml
223
- - generators/bootstrap/app/views/pages/index.liquid
224
- - generators/bootstrap/app/views/pages/index.liquid.haml
225
- - generators/bootstrap/app/views/pages/layouts/default.liquid
226
- - generators/bootstrap/app/views/pages/layouts/default.liquid.haml
227
- - generators/bootstrap/app/views/pages/layouts/simple.liquid
228
- - generators/bootstrap/app/views/pages/layouts/simple.liquid.haml
229
- - generators/bootstrap/app/views/snippets/footer.liquid
230
- - generators/bootstrap/app/views/snippets/footer.liquid.haml
231
- - generators/bootstrap/app/views/snippets/nav.liquid
232
- - generators/bootstrap/app/views/snippets/nav.liquid.haml
233
- - generators/bootstrap/config/deploy.yml
234
- - generators/bootstrap/config/metafields_schema.yml
235
- - generators/bootstrap/config/site.yml.tt
236
- - generators/bootstrap/config/translations.yml
237
- - generators/bootstrap/data/.empty_directory
238
- - generators/bootstrap/icon.png
239
- - generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.eot
240
- - generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.svg
241
- - generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.ttf
242
- - generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff
243
- - generators/bootstrap/public/fonts/bootstrap/glyphicons-halflings-regular.woff2
244
- - generators/bootstrap/public/images/favicon.png
245
- - generators/bootstrap/public/javascripts/application.js
246
- - generators/bootstrap/public/javascripts/bootstrap.min.js
247
- - generators/bootstrap/public/javascripts/bootstrap/affix.js
248
- - generators/bootstrap/public/javascripts/bootstrap/alert.js
249
- - generators/bootstrap/public/javascripts/bootstrap/button.js
250
- - generators/bootstrap/public/javascripts/bootstrap/carousel.js
251
- - generators/bootstrap/public/javascripts/bootstrap/collapse.js
252
- - generators/bootstrap/public/javascripts/bootstrap/dropdown.js
253
- - generators/bootstrap/public/javascripts/bootstrap/modal.js
254
- - generators/bootstrap/public/javascripts/bootstrap/popover.js
255
- - generators/bootstrap/public/javascripts/bootstrap/scrollspy.js
256
- - generators/bootstrap/public/javascripts/bootstrap/tab.js
257
- - generators/bootstrap/public/javascripts/bootstrap/tooltip.js
258
- - generators/bootstrap/public/javascripts/bootstrap/transition.js
259
- - generators/bootstrap/public/javascripts/jquery.min.js
260
- - generators/bootstrap/public/stylesheets/application.css
261
- - generators/bootstrap/public/stylesheets/application.scss
262
- - generators/bootstrap/public/stylesheets/bootstrap.css
263
- - generators/bootstrap/public/stylesheets/bootstrap.scss
264
- - generators/bootstrap/public/stylesheets/bootstrap/_alerts.scss
265
- - generators/bootstrap/public/stylesheets/bootstrap/_badges.scss
266
- - generators/bootstrap/public/stylesheets/bootstrap/_breadcrumbs.scss
267
- - generators/bootstrap/public/stylesheets/bootstrap/_button-groups.scss
268
- - generators/bootstrap/public/stylesheets/bootstrap/_buttons.scss
269
- - generators/bootstrap/public/stylesheets/bootstrap/_carousel.scss
270
- - generators/bootstrap/public/stylesheets/bootstrap/_close.scss
271
- - generators/bootstrap/public/stylesheets/bootstrap/_code.scss
272
- - generators/bootstrap/public/stylesheets/bootstrap/_component-animations.scss
273
- - generators/bootstrap/public/stylesheets/bootstrap/_dropdowns.scss
274
- - generators/bootstrap/public/stylesheets/bootstrap/_forms.scss
275
- - generators/bootstrap/public/stylesheets/bootstrap/_glyphicons.scss
276
- - generators/bootstrap/public/stylesheets/bootstrap/_grid.scss
277
- - generators/bootstrap/public/stylesheets/bootstrap/_input-groups.scss
278
- - generators/bootstrap/public/stylesheets/bootstrap/_jumbotron.scss
279
- - generators/bootstrap/public/stylesheets/bootstrap/_labels.scss
280
- - generators/bootstrap/public/stylesheets/bootstrap/_list-group.scss
281
- - generators/bootstrap/public/stylesheets/bootstrap/_media.scss
282
- - generators/bootstrap/public/stylesheets/bootstrap/_mixins.scss
283
- - generators/bootstrap/public/stylesheets/bootstrap/_modals.scss
284
- - generators/bootstrap/public/stylesheets/bootstrap/_navbar.scss
285
- - generators/bootstrap/public/stylesheets/bootstrap/_navs.scss
286
- - generators/bootstrap/public/stylesheets/bootstrap/_normalize.scss
287
- - generators/bootstrap/public/stylesheets/bootstrap/_pager.scss
288
- - generators/bootstrap/public/stylesheets/bootstrap/_pagination.scss
289
- - generators/bootstrap/public/stylesheets/bootstrap/_panels.scss
290
- - generators/bootstrap/public/stylesheets/bootstrap/_popovers.scss
291
- - generators/bootstrap/public/stylesheets/bootstrap/_print.scss
292
- - generators/bootstrap/public/stylesheets/bootstrap/_progress-bars.scss
293
- - generators/bootstrap/public/stylesheets/bootstrap/_responsive-embed.scss
294
- - generators/bootstrap/public/stylesheets/bootstrap/_responsive-utilities.scss
295
- - generators/bootstrap/public/stylesheets/bootstrap/_scaffolding.scss
296
- - generators/bootstrap/public/stylesheets/bootstrap/_tables.scss
297
- - generators/bootstrap/public/stylesheets/bootstrap/_theme.scss
298
- - generators/bootstrap/public/stylesheets/bootstrap/_thumbnails.scss
299
- - generators/bootstrap/public/stylesheets/bootstrap/_tooltip.scss
300
- - generators/bootstrap/public/stylesheets/bootstrap/_type.scss
301
- - generators/bootstrap/public/stylesheets/bootstrap/_utilities.scss
302
- - generators/bootstrap/public/stylesheets/bootstrap/_variables.scss
303
- - generators/bootstrap/public/stylesheets/bootstrap/_wells.scss
304
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_alerts.scss
305
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_background-variant.scss
306
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_border-radius.scss
307
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_buttons.scss
308
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_center-block.scss
309
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_clearfix.scss
310
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_forms.scss
311
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_gradients.scss
312
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid-framework.scss
313
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_grid.scss
314
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_hide-text.scss
315
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_image.scss
316
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_labels.scss
317
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_list-group.scss
318
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-divider.scss
319
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_nav-vertical-align.scss
320
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_opacity.scss
321
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_pagination.scss
322
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_panels.scss
323
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_progress-bar.scss
324
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-filter.scss
325
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_reset-text.scss
326
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_resize.scss
327
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_responsive-visibility.scss
328
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_size.scss
329
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_tab-focus.scss
330
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_table-row.scss
331
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-emphasis.scss
332
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_text-overflow.scss
333
- - generators/bootstrap/public/stylesheets/bootstrap/mixins/_vendor-prefixes.scss
334
243
  - generators/cloned/Gemfile.tt
335
244
  - generators/cloned/Guardfile
336
245
  - generators/cloned/app/content_types/.empty_directory
@@ -345,173 +254,10 @@ files:
345
254
  - generators/cloned/public/stylesheets/.empty_directory
346
255
  - generators/content_type/app/content_types/%slug%.yml.tt
347
256
  - generators/content_type/data/%slug%.yml.tt
348
- - generators/foundation/Gemfile.tt
349
- - generators/foundation/Guardfile
350
- - generators/foundation/app/content_types/.gitkeep
351
- - generators/foundation/app/views/pages/404.liquid
352
- - generators/foundation/app/views/pages/404.liquid.haml
353
- - generators/foundation/app/views/pages/index.liquid
354
- - generators/foundation/app/views/pages/index.liquid.haml
355
- - generators/foundation/app/views/snippets/.gitkeep
356
- - generators/foundation/config/deploy.yml
357
- - generators/foundation/config/metafields_schema.yml
358
- - generators/foundation/config/site.yml
359
- - generators/foundation/config/translations.yml
360
- - generators/foundation/data/.gitkeep
361
- - generators/foundation/log/.gitkeep
362
- - generators/foundation/public/images/.gitkeep
363
- - generators/foundation/public/javascripts/app.js
364
- - generators/foundation/public/javascripts/vendor/foundation.js
365
- - generators/foundation/public/javascripts/vendor/foundation.min.js
366
- - generators/foundation/public/javascripts/vendor/what-input.js
367
- - generators/foundation/public/javascripts/vendor/what-input.min.js
368
- - generators/foundation/public/stylesheets/_settings.scss
369
- - generators/foundation/public/stylesheets/app.css
370
- - generators/foundation/public/stylesheets/app.scss
371
- - generators/foundation/public/stylesheets/foundation.css
372
- - generators/foundation/public/stylesheets/foundation6/_global.scss
373
- - generators/foundation/public/stylesheets/foundation6/components/_accordion-menu.scss
374
- - generators/foundation/public/stylesheets/foundation6/components/_accordion.scss
375
- - generators/foundation/public/stylesheets/foundation6/components/_badge.scss
376
- - generators/foundation/public/stylesheets/foundation6/components/_breadcrumbs.scss
377
- - generators/foundation/public/stylesheets/foundation6/components/_button-group.scss
378
- - generators/foundation/public/stylesheets/foundation6/components/_button.scss
379
- - generators/foundation/public/stylesheets/foundation6/components/_callout.scss
380
- - generators/foundation/public/stylesheets/foundation6/components/_card.scss
381
- - generators/foundation/public/stylesheets/foundation6/components/_close-button.scss
382
- - generators/foundation/public/stylesheets/foundation6/components/_drilldown.scss
383
- - generators/foundation/public/stylesheets/foundation6/components/_dropdown-menu.scss
384
- - generators/foundation/public/stylesheets/foundation6/components/_dropdown.scss
385
- - generators/foundation/public/stylesheets/foundation6/components/_flex-video.scss
386
- - generators/foundation/public/stylesheets/foundation6/components/_flex.scss
387
- - generators/foundation/public/stylesheets/foundation6/components/_float.scss
388
- - generators/foundation/public/stylesheets/foundation6/components/_label.scss
389
- - generators/foundation/public/stylesheets/foundation6/components/_media-object.scss
390
- - generators/foundation/public/stylesheets/foundation6/components/_menu-icon.scss
391
- - generators/foundation/public/stylesheets/foundation6/components/_menu.scss
392
- - generators/foundation/public/stylesheets/foundation6/components/_off-canvas.scss
393
- - generators/foundation/public/stylesheets/foundation6/components/_orbit.scss
394
- - generators/foundation/public/stylesheets/foundation6/components/_pagination.scss
395
- - generators/foundation/public/stylesheets/foundation6/components/_progress-bar.scss
396
- - generators/foundation/public/stylesheets/foundation6/components/_responsive-embed.scss
397
- - generators/foundation/public/stylesheets/foundation6/components/_reveal.scss
398
- - generators/foundation/public/stylesheets/foundation6/components/_slider.scss
399
- - generators/foundation/public/stylesheets/foundation6/components/_sticky.scss
400
- - generators/foundation/public/stylesheets/foundation6/components/_switch.scss
401
- - generators/foundation/public/stylesheets/foundation6/components/_table.scss
402
- - generators/foundation/public/stylesheets/foundation6/components/_tabs.scss
403
- - generators/foundation/public/stylesheets/foundation6/components/_thumbnail.scss
404
- - generators/foundation/public/stylesheets/foundation6/components/_title-bar.scss
405
- - generators/foundation/public/stylesheets/foundation6/components/_tooltip.scss
406
- - generators/foundation/public/stylesheets/foundation6/components/_top-bar.scss
407
- - generators/foundation/public/stylesheets/foundation6/components/_visibility.scss
408
- - generators/foundation/public/stylesheets/foundation6/forms/_checkbox.scss
409
- - generators/foundation/public/stylesheets/foundation6/forms/_error.scss
410
- - generators/foundation/public/stylesheets/foundation6/forms/_fieldset.scss
411
- - generators/foundation/public/stylesheets/foundation6/forms/_forms.scss
412
- - generators/foundation/public/stylesheets/foundation6/forms/_help-text.scss
413
- - generators/foundation/public/stylesheets/foundation6/forms/_input-group.scss
414
- - generators/foundation/public/stylesheets/foundation6/forms/_label.scss
415
- - generators/foundation/public/stylesheets/foundation6/forms/_meter.scss
416
- - generators/foundation/public/stylesheets/foundation6/forms/_progress.scss
417
- - generators/foundation/public/stylesheets/foundation6/forms/_range.scss
418
- - generators/foundation/public/stylesheets/foundation6/forms/_select.scss
419
- - generators/foundation/public/stylesheets/foundation6/forms/_text.scss
420
- - generators/foundation/public/stylesheets/foundation6/foundation.scss
421
- - generators/foundation/public/stylesheets/foundation6/grid/_classes.scss
422
- - generators/foundation/public/stylesheets/foundation6/grid/_column.scss
423
- - generators/foundation/public/stylesheets/foundation6/grid/_flex-grid.scss
424
- - generators/foundation/public/stylesheets/foundation6/grid/_grid.scss
425
- - generators/foundation/public/stylesheets/foundation6/grid/_gutter.scss
426
- - generators/foundation/public/stylesheets/foundation6/grid/_layout.scss
427
- - generators/foundation/public/stylesheets/foundation6/grid/_position.scss
428
- - generators/foundation/public/stylesheets/foundation6/grid/_row.scss
429
- - generators/foundation/public/stylesheets/foundation6/grid/_size.scss
430
- - generators/foundation/public/stylesheets/foundation6/motion-ui/_classes.scss
431
- - generators/foundation/public/stylesheets/foundation6/motion-ui/_settings.scss
432
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_fade.scss
433
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_hinge.scss
434
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_shake.scss
435
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_slide.scss
436
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_spin.scss
437
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_wiggle.scss
438
- - generators/foundation/public/stylesheets/foundation6/motion-ui/effects/_zoom.scss
439
- - generators/foundation/public/stylesheets/foundation6/motion-ui/motion-ui.scss
440
- - generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_fade.scss
441
- - generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_hinge.scss
442
- - generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_slide.scss
443
- - generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_spin.scss
444
- - generators/foundation/public/stylesheets/foundation6/motion-ui/transitions/_zoom.scss
445
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_animation.scss
446
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_args.scss
447
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_keyframe.scss
448
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_selector.scss
449
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_series.scss
450
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_transition.scss
451
- - generators/foundation/public/stylesheets/foundation6/motion-ui/util/_unit.scss
452
- - generators/foundation/public/stylesheets/foundation6/prototype/_arrow.scss
453
- - generators/foundation/public/stylesheets/foundation6/prototype/_border-box.scss
454
- - generators/foundation/public/stylesheets/foundation6/prototype/_border-none.scss
455
- - generators/foundation/public/stylesheets/foundation6/prototype/_bordered.scss
456
- - generators/foundation/public/stylesheets/foundation6/prototype/_box.scss
457
- - generators/foundation/public/stylesheets/foundation6/prototype/_display.scss
458
- - generators/foundation/public/stylesheets/foundation6/prototype/_font-styling.scss
459
- - generators/foundation/public/stylesheets/foundation6/prototype/_list-style-type.scss
460
- - generators/foundation/public/stylesheets/foundation6/prototype/_overflow.scss
461
- - generators/foundation/public/stylesheets/foundation6/prototype/_position.scss
462
- - generators/foundation/public/stylesheets/foundation6/prototype/_prototype.scss
463
- - generators/foundation/public/stylesheets/foundation6/prototype/_relation.scss
464
- - generators/foundation/public/stylesheets/foundation6/prototype/_rotate.scss
465
- - generators/foundation/public/stylesheets/foundation6/prototype/_rounded.scss
466
- - generators/foundation/public/stylesheets/foundation6/prototype/_separator.scss
467
- - generators/foundation/public/stylesheets/foundation6/prototype/_shadow.scss
468
- - generators/foundation/public/stylesheets/foundation6/prototype/_sizing.scss
469
- - generators/foundation/public/stylesheets/foundation6/prototype/_spacing.scss
470
- - generators/foundation/public/stylesheets/foundation6/prototype/_text-decoration.scss
471
- - generators/foundation/public/stylesheets/foundation6/prototype/_text-transformation.scss
472
- - generators/foundation/public/stylesheets/foundation6/prototype/_text-utilities.scss
473
- - generators/foundation/public/stylesheets/foundation6/settings/_settings.scss
474
- - generators/foundation/public/stylesheets/foundation6/typography/_alignment.scss
475
- - generators/foundation/public/stylesheets/foundation6/typography/_base.scss
476
- - generators/foundation/public/stylesheets/foundation6/typography/_helpers.scss
477
- - generators/foundation/public/stylesheets/foundation6/typography/_print.scss
478
- - generators/foundation/public/stylesheets/foundation6/typography/_typography.scss
479
- - generators/foundation/public/stylesheets/foundation6/util/_breakpoint.scss
480
- - generators/foundation/public/stylesheets/foundation6/util/_color.scss
481
- - generators/foundation/public/stylesheets/foundation6/util/_direction.scss
482
- - generators/foundation/public/stylesheets/foundation6/util/_flex.scss
483
- - generators/foundation/public/stylesheets/foundation6/util/_math.scss
484
- - generators/foundation/public/stylesheets/foundation6/util/_mixins.scss
485
- - generators/foundation/public/stylesheets/foundation6/util/_selector.scss
486
- - generators/foundation/public/stylesheets/foundation6/util/_typography.scss
487
- - generators/foundation/public/stylesheets/foundation6/util/_unit.scss
488
- - generators/foundation/public/stylesheets/foundation6/util/_util.scss
489
- - generators/foundation/public/stylesheets/foundation6/util/_value.scss
490
- - generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/_normalize.scss
491
- - generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_import-now.scss
492
- - generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_normalize-mixin.scss
493
- - generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_variables.scss
494
- - generators/foundation/public/stylesheets/foundation6/vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss
495
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_contain.scss
496
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_purge.scss
497
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_remove.scss
498
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_replace.scss
499
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/functions/_to-list.scss
500
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss
501
- - generators/foundation/public/stylesheets/foundation6/vendor/sassy-lists/stylesheets/helpers/_true.scss
502
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_cell.scss
503
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_classes.scss
504
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_collapse.scss
505
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_frame.scss
506
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_grid.scss
507
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_gutters.scss
508
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_layout.scss
509
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_position.scss
510
- - generators/foundation/public/stylesheets/foundation6/xy-grid/_xy-grid.scss
511
- - generators/page/template.liquid.haml.tt
512
257
  - generators/page/template.liquid.tt
258
+ - generators/section/%type%.js.tt
259
+ - generators/section/template.liquid.tt
513
260
  - generators/site_metafields/schema.yml.tt
514
- - generators/snippet/template.liquid.haml.tt
515
261
  - generators/snippet/template.liquid.tt
516
262
  - lib/locomotive/wagon.rb
517
263
  - lib/locomotive/wagon/cli.rb
@@ -547,6 +293,7 @@ files:
547
293
  - lib/locomotive/wagon/commands/push_sub_commands/push_content_entries_command.rb
548
294
  - lib/locomotive/wagon/commands/push_sub_commands/push_content_types_command.rb
549
295
  - lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb
296
+ - lib/locomotive/wagon/commands/push_sub_commands/push_sections_command.rb
550
297
  - lib/locomotive/wagon/commands/push_sub_commands/push_site_command.rb
551
298
  - lib/locomotive/wagon/commands/push_sub_commands/push_snippets_command.rb
552
299
  - lib/locomotive/wagon/commands/push_sub_commands/push_theme_assets_command.rb
@@ -566,6 +313,7 @@ files:
566
313
  - lib/locomotive/wagon/decorators/content_type_field_decorator.rb
567
314
  - lib/locomotive/wagon/decorators/editable_element_decorator.rb
568
315
  - lib/locomotive/wagon/decorators/page_decorator.rb
316
+ - lib/locomotive/wagon/decorators/section_decorator.rb
569
317
  - lib/locomotive/wagon/decorators/site_decorator.rb
570
318
  - lib/locomotive/wagon/decorators/snippet_decorator.rb
571
319
  - lib/locomotive/wagon/decorators/theme_asset_decorator.rb
@@ -574,13 +322,11 @@ files:
574
322
  - lib/locomotive/wagon/generators/content_type.rb
575
323
  - lib/locomotive/wagon/generators/page.rb
576
324
  - lib/locomotive/wagon/generators/relationship.rb
325
+ - lib/locomotive/wagon/generators/section.rb
577
326
  - lib/locomotive/wagon/generators/site.rb
578
327
  - lib/locomotive/wagon/generators/site/base.rb
579
328
  - lib/locomotive/wagon/generators/site/blank.rb
580
- - lib/locomotive/wagon/generators/site/bootstrap.rb
581
329
  - lib/locomotive/wagon/generators/site/cloned.rb
582
- - lib/locomotive/wagon/generators/site/foundation.rb
583
- - lib/locomotive/wagon/generators/site/line_case.rb
584
330
  - lib/locomotive/wagon/generators/site/unzip.rb
585
331
  - lib/locomotive/wagon/generators/site_metafields.rb
586
332
  - lib/locomotive/wagon/generators/snippet.rb
@@ -609,6 +355,7 @@ files:
609
355
  - spec/fixtures/cassettes/authenticate.yml
610
356
  - spec/fixtures/cassettes/delete.yml
611
357
  - spec/fixtures/cassettes/push.yml
358
+ - spec/fixtures/cassettes/sync.yml
612
359
  - spec/fixtures/default/README
613
360
  - spec/fixtures/default/app/content_types/bands.yml
614
361
  - spec/fixtures/default/app/content_types/events.yml
@@ -680,6 +427,7 @@ files:
680
427
  - spec/integration/commands/authenticate_command_spec.rb
681
428
  - spec/integration/commands/delete_command_spec.rb
682
429
  - spec/integration/commands/push_command_spec.rb
430
+ - spec/integration/commands/sync_command_spec.rb
683
431
  - spec/integration/generators/page_spec.rb
684
432
  - spec/integration/generators/relationship_spec.rb
685
433
  - spec/integration/integration_helper.rb
@@ -716,17 +464,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
716
464
  version: '0'
717
465
  required_rubygems_version: !ruby/object:Gem::Requirement
718
466
  requirements:
719
- - - ">="
467
+ - - ">"
720
468
  - !ruby/object:Gem::Version
721
- version: '0'
469
+ version: 1.3.1
722
470
  requirements: []
723
471
  rubyforge_project:
724
472
  rubygems_version: 2.7.3
725
473
  signing_key:
726
474
  specification_version: 4
727
475
  summary: The LocomotiveCMS wagon is a site generator for the LocomotiveCMS engine
728
- powered by all the efficient and modern HTML development tools (Haml, SASS, Compass,
729
- Less).
476
+ powered by all the efficient and modern HTML development tools (SASS, Webpack, ...etc).
730
477
  test_files:
731
478
  - spec/fixtures/blog/app/content_types/comments.yml
732
479
  - spec/fixtures/blog/app/content_types/posts.yml
@@ -744,6 +491,7 @@ test_files:
744
491
  - spec/fixtures/cassettes/authenticate.yml
745
492
  - spec/fixtures/cassettes/delete.yml
746
493
  - spec/fixtures/cassettes/push.yml
494
+ - spec/fixtures/cassettes/sync.yml
747
495
  - spec/fixtures/default/README
748
496
  - spec/fixtures/default/app/content_types/bands.yml
749
497
  - spec/fixtures/default/app/content_types/events.yml
@@ -815,6 +563,7 @@ test_files:
815
563
  - spec/integration/commands/authenticate_command_spec.rb
816
564
  - spec/integration/commands/delete_command_spec.rb
817
565
  - spec/integration/commands/push_command_spec.rb
566
+ - spec/integration/commands/sync_command_spec.rb
818
567
  - spec/integration/generators/page_spec.rb
819
568
  - spec/integration/generators/relationship_spec.rb
820
569
  - spec/integration/integration_helper.rb