cl-admin 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/cl_admin/application.js +16 -0
  6. data/app/assets/javascripts/cl_admin/datatables.js +3 -0
  7. data/app/assets/javascripts/cl_admin/vendor/jquery.dataTables.js +14839 -0
  8. data/app/assets/stylesheets/cl_admin/application.scss +16 -0
  9. data/app/assets/stylesheets/cl_admin/bootstrap-dashboard.scss +63 -0
  10. data/app/assets/stylesheets/cl_admin/bootstrap_overrides.scss +10 -0
  11. data/app/assets/stylesheets/cl_admin/buttons.scss +14 -0
  12. data/app/assets/stylesheets/cl_admin/dataTables.scss +476 -0
  13. data/app/assets/stylesheets/cl_admin/sidebar.scss +47 -0
  14. data/app/assets/stylesheets/cl_admin/utility.scss +0 -0
  15. data/app/assets/stylesheets/cl_admin/variables.scss +19 -0
  16. data/app/controllers/cl_admin/application_controller.rb +5 -0
  17. data/app/controllers/cl_admin/dashboard_controller.rb +7 -0
  18. data/app/controllers/cl_admin/resources_controller.rb +50 -0
  19. data/app/helpers/cl_admin/application_helper.rb +4 -0
  20. data/app/helpers/cl_admin/resources_helper.rb +4 -0
  21. data/app/views/cl_admin/dashboard/index.html.erb +23 -0
  22. data/app/views/cl_admin/resources/_form.html.erb +6 -0
  23. data/app/views/cl_admin/resources/index.html.erb +30 -0
  24. data/app/views/cl_admin/resources/new.html.erb +9 -0
  25. data/app/views/cl_admin/resources/show.html.erb +20 -0
  26. data/app/views/layouts/cl_admin/application.html.erb +74 -0
  27. data/config/routes.rb +7 -0
  28. data/lib/cl_admin.rb +18 -0
  29. data/lib/cl_admin/configuration.rb +13 -0
  30. data/lib/cl_admin/engine.rb +5 -0
  31. data/lib/cl_admin/resource.rb +77 -0
  32. data/lib/cl_admin/resource/field.rb +32 -0
  33. data/lib/cl_admin/simple_form.rb +168 -0
  34. data/lib/cl_admin/version.rb +3 -0
  35. data/lib/tasks/cl_admin_tasks.rake +4 -0
  36. data/test/cl_admin_test.rb +7 -0
  37. data/test/dummy/README.rdoc +28 -0
  38. data/test/dummy/Rakefile +6 -0
  39. data/test/dummy/app/assets/javascripts/application.js +13 -0
  40. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  41. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  42. data/test/dummy/app/controllers/application_controller.rb +5 -0
  43. data/test/dummy/app/helpers/application_helper.rb +2 -0
  44. data/test/dummy/app/models/thing.rb +2 -0
  45. data/test/dummy/app/models/widget.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/config/application.rb +23 -0
  52. data/test/dummy/config/boot.rb +5 -0
  53. data/test/dummy/config/database.yml +25 -0
  54. data/test/dummy/config/environment.rb +5 -0
  55. data/test/dummy/config/environments/development.rb +37 -0
  56. data/test/dummy/config/environments/production.rb +78 -0
  57. data/test/dummy/config/environments/test.rb +39 -0
  58. data/test/dummy/config/initializers/assets.rb +8 -0
  59. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  60. data/test/dummy/config/initializers/cl_admin.rb +15 -0
  61. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  62. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/test/dummy/config/initializers/inflections.rb +16 -0
  64. data/test/dummy/config/initializers/mime_types.rb +4 -0
  65. data/test/dummy/config/initializers/session_store.rb +3 -0
  66. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/test/dummy/config/locales/en.yml +23 -0
  68. data/test/dummy/config/routes.rb +3 -0
  69. data/test/dummy/config/secrets.yml +22 -0
  70. data/test/dummy/db/development.sqlite3 +0 -0
  71. data/test/dummy/db/migrate/20150128203934_create_widgets.rb +11 -0
  72. data/test/dummy/db/migrate/20150128221526_create_things.rb +10 -0
  73. data/test/dummy/db/schema.rb +31 -0
  74. data/test/dummy/log/development.log +35213 -0
  75. data/test/dummy/public/404.html +67 -0
  76. data/test/dummy/public/422.html +67 -0
  77. data/test/dummy/public/500.html +66 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/test/fixtures/things.yml +9 -0
  80. data/test/dummy/test/fixtures/widgets.yml +11 -0
  81. data/test/dummy/test/models/thing_test.rb +7 -0
  82. data/test/dummy/test/models/widget_test.rb +7 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/application.scssc +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap-dashboard.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap_overrides.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/buttons.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/dataTables.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/nav-sidebar.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/sidebar.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/utility.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/variables.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_alerts.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_badges.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_breadcrumbs.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_button-groups.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_buttons.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_carousel.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_close.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_code.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_component-animations.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_dropdowns.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_forms.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_glyphicons.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_grid.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_input-groups.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_jumbotron.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_labels.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_list-group.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_media.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_mixins.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_modals.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navbar.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navs.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_normalize.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pager.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pagination.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_panels.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_popovers.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_print.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_progress-bars.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-embed.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-utilities.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_scaffolding.scssc +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tables.scssc +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_thumbnails.scssc +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tooltip.scssc +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_type.scssc +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_utilities.scssc +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_variables.scssc +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_wells.scssc +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap-sprockets.scssc +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap.scssc +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_alerts.scssc +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_background-variant.scssc +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_border-radius.scssc +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_buttons.scssc +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_center-block.scssc +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_clearfix.scssc +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_forms.scssc +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_gradients.scssc +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid-framework.scssc +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid.scssc +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_hide-text.scssc +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_image.scssc +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_labels.scssc +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_list-group.scssc +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-divider.scssc +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-vertical-align.scssc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_opacity.scssc +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_pagination.scssc +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_panels.scssc +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_progress-bar.scssc +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_reset-filter.scssc +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_resize.scssc +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_responsive-visibility.scssc +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_size.scssc +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_tab-focus.scssc +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_table-row.scssc +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-emphasis.scssc +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-overflow.scssc +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_vendor-prefixes.scssc +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sass/eaf2b3ba15346b0c73619d2ad3ae7fcdaf0aa56a/bootstrap-dashboard.scssc +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/0682d76393eff7c31b20bbd3eba49fc8 +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/1fac683c0f668a2a7fd4ea1062b39fbf +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/20b34331df4be4854889a3c23377f45e +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/3553ed1f1b382b6b9bcc518b810b271b +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/36f8ae187aff06bd327a0da82211ee0d +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/3ddfe27fc34861ca04ca66a0c208c22c +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/45171cfb63e99073564e0b228ac28041 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/50483055a8f88061f7d914fa626c5352 +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/59d3c4356501b88041da3f30a13e79b6 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/5e5f5b6a9fadf420dcf484d703d04112 +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/5f31826a3e67ae3c19ad896764e142f2 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/67ab6ab97c6f1be9661cec5fb1fe1bdc +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/6b48cbb5b69311776bf647f5441b8261 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/73076af09d2cc309d096d788850449d6 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/7dcfdb7c49f7e376d6f39367b09fbf5b +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/855025ccf2d78ca8086c71dbd05ddb80 +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/860a9b5297964d6c08619dad24f8cad0 +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/8ac30b42f441d7367b119073c8906c78 +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/93d5e5770edc2798869f9b91fdf3d4b6 +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/9a36c88175eb86f93cfc7fc7735e0043 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/a1d20140ba285327c174b822dc148de2 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/a25f613a8ecc416a21920d5066359695 +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/ac73d5c7b73b96c8bcaac0821ac18c89 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/b28ce637ebd1a320b66c1f8df1c38b96 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/b5e5faf9bf347d0e0a85cf07fe8222a3 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/bb9a1e25b5312dc605a09b6789849fdf +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/bbd03989b5854f9ac01c0fe45267492c +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/c219a250b8b465cb233748d3c4bb7288 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/cbe8158164315b4f1d1b81ff224c0ef4 +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/d5a89fee789601bd5eefc3a114a80745 +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/d659ac88af9b82c8f1f5d6188aa9e71a +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/d6c1da9ef1be9fb5132d4dc6a04f95eb +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/db41ba23a87bb0501594066bbe6306d6 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/ead728b75839b122c1534a25c900d55c +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/ee6cfea76b27b0352119a739b66636ad +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/eef986a2fcad7c282086103c05fcf9a7 +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/f32f682108ad3b7c90921211cfedf112 +0 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/f403f6c6e97ccddaf5687f4d36860635 +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/f56098ce403bc1978064a814465248d4 +0 -0
  202. data/test/integration/navigation_test.rb +10 -0
  203. data/test/test_helper.rb +19 -0
  204. metadata +513 -0
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,19 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
7
+ require "rails/test_help"
8
+
9
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
10
+ # to be shown.
11
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
+
13
+ # Load support files
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
15
+
16
+ # Load fixtures from the engine
17
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
18
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
19
+ end
metadata ADDED
@@ -0,0 +1,513 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cl-admin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Nathan Sharpe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bootstrap-sass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.3.3
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.3.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '3.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '3.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jquery-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simple_form
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: sqlite3
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Simple administration framework.
112
+ email:
113
+ - nathan@cliftonlabs.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - MIT-LICENSE
119
+ - README.rdoc
120
+ - Rakefile
121
+ - app/assets/javascripts/cl_admin/application.js
122
+ - app/assets/javascripts/cl_admin/datatables.js
123
+ - app/assets/javascripts/cl_admin/vendor/jquery.dataTables.js
124
+ - app/assets/stylesheets/cl_admin/application.scss
125
+ - app/assets/stylesheets/cl_admin/bootstrap-dashboard.scss
126
+ - app/assets/stylesheets/cl_admin/bootstrap_overrides.scss
127
+ - app/assets/stylesheets/cl_admin/buttons.scss
128
+ - app/assets/stylesheets/cl_admin/dataTables.scss
129
+ - app/assets/stylesheets/cl_admin/sidebar.scss
130
+ - app/assets/stylesheets/cl_admin/utility.scss
131
+ - app/assets/stylesheets/cl_admin/variables.scss
132
+ - app/controllers/cl_admin/application_controller.rb
133
+ - app/controllers/cl_admin/dashboard_controller.rb
134
+ - app/controllers/cl_admin/resources_controller.rb
135
+ - app/helpers/cl_admin/application_helper.rb
136
+ - app/helpers/cl_admin/resources_helper.rb
137
+ - app/views/cl_admin/dashboard/index.html.erb
138
+ - app/views/cl_admin/resources/_form.html.erb
139
+ - app/views/cl_admin/resources/index.html.erb
140
+ - app/views/cl_admin/resources/new.html.erb
141
+ - app/views/cl_admin/resources/show.html.erb
142
+ - app/views/layouts/cl_admin/application.html.erb
143
+ - config/routes.rb
144
+ - lib/cl_admin.rb
145
+ - lib/cl_admin/configuration.rb
146
+ - lib/cl_admin/engine.rb
147
+ - lib/cl_admin/resource.rb
148
+ - lib/cl_admin/resource/field.rb
149
+ - lib/cl_admin/simple_form.rb
150
+ - lib/cl_admin/version.rb
151
+ - lib/tasks/cl_admin_tasks.rake
152
+ - test/cl_admin_test.rb
153
+ - test/dummy/README.rdoc
154
+ - test/dummy/Rakefile
155
+ - test/dummy/app/assets/javascripts/application.js
156
+ - test/dummy/app/assets/stylesheets/application.css
157
+ - test/dummy/app/assets/stylesheets/scaffold.css
158
+ - test/dummy/app/controllers/application_controller.rb
159
+ - test/dummy/app/helpers/application_helper.rb
160
+ - test/dummy/app/models/thing.rb
161
+ - test/dummy/app/models/widget.rb
162
+ - test/dummy/app/views/layouts/application.html.erb
163
+ - test/dummy/bin/bundle
164
+ - test/dummy/bin/rails
165
+ - test/dummy/bin/rake
166
+ - test/dummy/config.ru
167
+ - test/dummy/config/application.rb
168
+ - test/dummy/config/boot.rb
169
+ - test/dummy/config/database.yml
170
+ - test/dummy/config/environment.rb
171
+ - test/dummy/config/environments/development.rb
172
+ - test/dummy/config/environments/production.rb
173
+ - test/dummy/config/environments/test.rb
174
+ - test/dummy/config/initializers/assets.rb
175
+ - test/dummy/config/initializers/backtrace_silencers.rb
176
+ - test/dummy/config/initializers/cl_admin.rb
177
+ - test/dummy/config/initializers/cookies_serializer.rb
178
+ - test/dummy/config/initializers/filter_parameter_logging.rb
179
+ - test/dummy/config/initializers/inflections.rb
180
+ - test/dummy/config/initializers/mime_types.rb
181
+ - test/dummy/config/initializers/session_store.rb
182
+ - test/dummy/config/initializers/wrap_parameters.rb
183
+ - test/dummy/config/locales/en.yml
184
+ - test/dummy/config/routes.rb
185
+ - test/dummy/config/secrets.yml
186
+ - test/dummy/db/development.sqlite3
187
+ - test/dummy/db/migrate/20150128203934_create_widgets.rb
188
+ - test/dummy/db/migrate/20150128221526_create_things.rb
189
+ - test/dummy/db/schema.rb
190
+ - test/dummy/log/development.log
191
+ - test/dummy/public/404.html
192
+ - test/dummy/public/422.html
193
+ - test/dummy/public/500.html
194
+ - test/dummy/public/favicon.ico
195
+ - test/dummy/test/fixtures/things.yml
196
+ - test/dummy/test/fixtures/widgets.yml
197
+ - test/dummy/test/models/thing_test.rb
198
+ - test/dummy/test/models/widget_test.rb
199
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/application.scssc
200
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap-dashboard.scssc
201
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap_overrides.scssc
202
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/buttons.scssc
203
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/dataTables.scssc
204
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/nav-sidebar.scssc
205
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/sidebar.scssc
206
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/utility.scssc
207
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/variables.scssc
208
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_alerts.scssc
209
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_badges.scssc
210
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_breadcrumbs.scssc
211
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_button-groups.scssc
212
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_buttons.scssc
213
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_carousel.scssc
214
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_close.scssc
215
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_code.scssc
216
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_component-animations.scssc
217
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_dropdowns.scssc
218
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_forms.scssc
219
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_glyphicons.scssc
220
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_grid.scssc
221
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_input-groups.scssc
222
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_jumbotron.scssc
223
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_labels.scssc
224
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_list-group.scssc
225
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_media.scssc
226
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_mixins.scssc
227
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_modals.scssc
228
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navbar.scssc
229
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navs.scssc
230
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_normalize.scssc
231
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pager.scssc
232
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pagination.scssc
233
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_panels.scssc
234
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_popovers.scssc
235
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_print.scssc
236
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_progress-bars.scssc
237
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-embed.scssc
238
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-utilities.scssc
239
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_scaffolding.scssc
240
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tables.scssc
241
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_thumbnails.scssc
242
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tooltip.scssc
243
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_type.scssc
244
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_utilities.scssc
245
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_variables.scssc
246
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_wells.scssc
247
+ - test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap-sprockets.scssc
248
+ - test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap.scssc
249
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_alerts.scssc
250
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_background-variant.scssc
251
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_border-radius.scssc
252
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_buttons.scssc
253
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_center-block.scssc
254
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_clearfix.scssc
255
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_forms.scssc
256
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_gradients.scssc
257
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid-framework.scssc
258
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid.scssc
259
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_hide-text.scssc
260
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_image.scssc
261
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_labels.scssc
262
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_list-group.scssc
263
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-divider.scssc
264
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-vertical-align.scssc
265
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_opacity.scssc
266
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_pagination.scssc
267
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_panels.scssc
268
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_progress-bar.scssc
269
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_reset-filter.scssc
270
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_resize.scssc
271
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_responsive-visibility.scssc
272
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_size.scssc
273
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_tab-focus.scssc
274
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_table-row.scssc
275
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-emphasis.scssc
276
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-overflow.scssc
277
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_vendor-prefixes.scssc
278
+ - test/dummy/tmp/cache/assets/development/sass/eaf2b3ba15346b0c73619d2ad3ae7fcdaf0aa56a/bootstrap-dashboard.scssc
279
+ - test/dummy/tmp/cache/assets/development/sprockets/0682d76393eff7c31b20bbd3eba49fc8
280
+ - test/dummy/tmp/cache/assets/development/sprockets/1fac683c0f668a2a7fd4ea1062b39fbf
281
+ - test/dummy/tmp/cache/assets/development/sprockets/20b34331df4be4854889a3c23377f45e
282
+ - test/dummy/tmp/cache/assets/development/sprockets/3553ed1f1b382b6b9bcc518b810b271b
283
+ - test/dummy/tmp/cache/assets/development/sprockets/36f8ae187aff06bd327a0da82211ee0d
284
+ - test/dummy/tmp/cache/assets/development/sprockets/3ddfe27fc34861ca04ca66a0c208c22c
285
+ - test/dummy/tmp/cache/assets/development/sprockets/45171cfb63e99073564e0b228ac28041
286
+ - test/dummy/tmp/cache/assets/development/sprockets/50483055a8f88061f7d914fa626c5352
287
+ - test/dummy/tmp/cache/assets/development/sprockets/59d3c4356501b88041da3f30a13e79b6
288
+ - test/dummy/tmp/cache/assets/development/sprockets/5e5f5b6a9fadf420dcf484d703d04112
289
+ - test/dummy/tmp/cache/assets/development/sprockets/5f31826a3e67ae3c19ad896764e142f2
290
+ - test/dummy/tmp/cache/assets/development/sprockets/67ab6ab97c6f1be9661cec5fb1fe1bdc
291
+ - test/dummy/tmp/cache/assets/development/sprockets/6b48cbb5b69311776bf647f5441b8261
292
+ - test/dummy/tmp/cache/assets/development/sprockets/73076af09d2cc309d096d788850449d6
293
+ - test/dummy/tmp/cache/assets/development/sprockets/7dcfdb7c49f7e376d6f39367b09fbf5b
294
+ - test/dummy/tmp/cache/assets/development/sprockets/855025ccf2d78ca8086c71dbd05ddb80
295
+ - test/dummy/tmp/cache/assets/development/sprockets/860a9b5297964d6c08619dad24f8cad0
296
+ - test/dummy/tmp/cache/assets/development/sprockets/8ac30b42f441d7367b119073c8906c78
297
+ - test/dummy/tmp/cache/assets/development/sprockets/93d5e5770edc2798869f9b91fdf3d4b6
298
+ - test/dummy/tmp/cache/assets/development/sprockets/9a36c88175eb86f93cfc7fc7735e0043
299
+ - test/dummy/tmp/cache/assets/development/sprockets/a1d20140ba285327c174b822dc148de2
300
+ - test/dummy/tmp/cache/assets/development/sprockets/a25f613a8ecc416a21920d5066359695
301
+ - test/dummy/tmp/cache/assets/development/sprockets/ac73d5c7b73b96c8bcaac0821ac18c89
302
+ - test/dummy/tmp/cache/assets/development/sprockets/b28ce637ebd1a320b66c1f8df1c38b96
303
+ - test/dummy/tmp/cache/assets/development/sprockets/b5e5faf9bf347d0e0a85cf07fe8222a3
304
+ - test/dummy/tmp/cache/assets/development/sprockets/bb9a1e25b5312dc605a09b6789849fdf
305
+ - test/dummy/tmp/cache/assets/development/sprockets/bbd03989b5854f9ac01c0fe45267492c
306
+ - test/dummy/tmp/cache/assets/development/sprockets/c219a250b8b465cb233748d3c4bb7288
307
+ - test/dummy/tmp/cache/assets/development/sprockets/cbe8158164315b4f1d1b81ff224c0ef4
308
+ - test/dummy/tmp/cache/assets/development/sprockets/d5a89fee789601bd5eefc3a114a80745
309
+ - test/dummy/tmp/cache/assets/development/sprockets/d659ac88af9b82c8f1f5d6188aa9e71a
310
+ - test/dummy/tmp/cache/assets/development/sprockets/d6c1da9ef1be9fb5132d4dc6a04f95eb
311
+ - test/dummy/tmp/cache/assets/development/sprockets/db41ba23a87bb0501594066bbe6306d6
312
+ - test/dummy/tmp/cache/assets/development/sprockets/ead728b75839b122c1534a25c900d55c
313
+ - test/dummy/tmp/cache/assets/development/sprockets/ee6cfea76b27b0352119a739b66636ad
314
+ - test/dummy/tmp/cache/assets/development/sprockets/eef986a2fcad7c282086103c05fcf9a7
315
+ - test/dummy/tmp/cache/assets/development/sprockets/f32f682108ad3b7c90921211cfedf112
316
+ - test/dummy/tmp/cache/assets/development/sprockets/f403f6c6e97ccddaf5687f4d36860635
317
+ - test/dummy/tmp/cache/assets/development/sprockets/f56098ce403bc1978064a814465248d4
318
+ - test/integration/navigation_test.rb
319
+ - test/test_helper.rb
320
+ homepage: http://cliftonlabs.com
321
+ licenses:
322
+ - MIT
323
+ metadata: {}
324
+ post_install_message:
325
+ rdoc_options: []
326
+ require_paths:
327
+ - lib
328
+ required_ruby_version: !ruby/object:Gem::Requirement
329
+ requirements:
330
+ - - ">="
331
+ - !ruby/object:Gem::Version
332
+ version: '0'
333
+ required_rubygems_version: !ruby/object:Gem::Requirement
334
+ requirements:
335
+ - - ">="
336
+ - !ruby/object:Gem::Version
337
+ version: '0'
338
+ requirements: []
339
+ rubyforge_project:
340
+ rubygems_version: 2.2.2
341
+ signing_key:
342
+ specification_version: 4
343
+ summary: Simple administration framework.
344
+ test_files:
345
+ - test/cl_admin_test.rb
346
+ - test/integration/navigation_test.rb
347
+ - test/test_helper.rb
348
+ - test/dummy/Rakefile
349
+ - test/dummy/db/schema.rb
350
+ - test/dummy/db/development.sqlite3
351
+ - test/dummy/db/migrate/20150128203934_create_widgets.rb
352
+ - test/dummy/db/migrate/20150128221526_create_things.rb
353
+ - test/dummy/test/fixtures/things.yml
354
+ - test/dummy/test/fixtures/widgets.yml
355
+ - test/dummy/test/models/thing_test.rb
356
+ - test/dummy/test/models/widget_test.rb
357
+ - test/dummy/README.rdoc
358
+ - test/dummy/app/views/layouts/application.html.erb
359
+ - test/dummy/app/helpers/application_helper.rb
360
+ - test/dummy/app/controllers/application_controller.rb
361
+ - test/dummy/app/assets/javascripts/application.js
362
+ - test/dummy/app/assets/stylesheets/application.css
363
+ - test/dummy/app/assets/stylesheets/scaffold.css
364
+ - test/dummy/app/models/thing.rb
365
+ - test/dummy/app/models/widget.rb
366
+ - test/dummy/log/development.log
367
+ - test/dummy/bin/bundle
368
+ - test/dummy/bin/rake
369
+ - test/dummy/bin/rails
370
+ - test/dummy/config/secrets.yml
371
+ - test/dummy/config/locales/en.yml
372
+ - test/dummy/config/application.rb
373
+ - test/dummy/config/environments/production.rb
374
+ - test/dummy/config/environments/test.rb
375
+ - test/dummy/config/environments/development.rb
376
+ - test/dummy/config/routes.rb
377
+ - test/dummy/config/initializers/session_store.rb
378
+ - test/dummy/config/initializers/backtrace_silencers.rb
379
+ - test/dummy/config/initializers/cl_admin.rb
380
+ - test/dummy/config/initializers/cookies_serializer.rb
381
+ - test/dummy/config/initializers/mime_types.rb
382
+ - test/dummy/config/initializers/wrap_parameters.rb
383
+ - test/dummy/config/initializers/filter_parameter_logging.rb
384
+ - test/dummy/config/initializers/inflections.rb
385
+ - test/dummy/config/initializers/assets.rb
386
+ - test/dummy/config/environment.rb
387
+ - test/dummy/config/database.yml
388
+ - test/dummy/config/boot.rb
389
+ - test/dummy/config.ru
390
+ - test/dummy/public/500.html
391
+ - test/dummy/public/favicon.ico
392
+ - test/dummy/public/404.html
393
+ - test/dummy/public/422.html
394
+ - test/dummy/tmp/cache/assets/development/sass/eaf2b3ba15346b0c73619d2ad3ae7fcdaf0aa56a/bootstrap-dashboard.scssc
395
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_forms.scssc
396
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_size.scssc
397
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-emphasis.scssc
398
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_buttons.scssc
399
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_hide-text.scssc
400
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid.scssc
401
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-vertical-align.scssc
402
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_gradients.scssc
403
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_grid-framework.scssc
404
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_image.scssc
405
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_list-group.scssc
406
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_progress-bar.scssc
407
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_text-overflow.scssc
408
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_reset-filter.scssc
409
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_vendor-prefixes.scssc
410
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_resize.scssc
411
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_border-radius.scssc
412
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_tab-focus.scssc
413
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_table-row.scssc
414
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_nav-divider.scssc
415
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_pagination.scssc
416
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_opacity.scssc
417
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_clearfix.scssc
418
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_alerts.scssc
419
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_background-variant.scssc
420
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_labels.scssc
421
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_panels.scssc
422
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_center-block.scssc
423
+ - test/dummy/tmp/cache/assets/development/sass/d5ae62fa76c715540c1cd376eada878bee98456c/_responsive-visibility.scssc
424
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap_overrides.scssc
425
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/bootstrap-dashboard.scssc
426
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/dataTables.scssc
427
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/buttons.scssc
428
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/variables.scssc
429
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/application.scssc
430
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/utility.scssc
431
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/nav-sidebar.scssc
432
+ - test/dummy/tmp/cache/assets/development/sass/5ca297b84cede238f2f7e1100a9c8a60d82e472c/sidebar.scssc
433
+ - test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap.scssc
434
+ - test/dummy/tmp/cache/assets/development/sass/b92dbf189012ed16682faff674922d38a147d711/_bootstrap-sprockets.scssc
435
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_forms.scssc
436
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-utilities.scssc
437
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_scaffolding.scssc
438
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tables.scssc
439
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_print.scssc
440
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_wells.scssc
441
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_badges.scssc
442
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_code.scssc
443
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_buttons.scssc
444
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_grid.scssc
445
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_utilities.scssc
446
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_modals.scssc
447
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_breadcrumbs.scssc
448
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_close.scssc
449
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_thumbnails.scssc
450
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_variables.scssc
451
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_list-group.scssc
452
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_dropdowns.scssc
453
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pager.scssc
454
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navbar.scssc
455
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_popovers.scssc
456
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_component-animations.scssc
457
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_mixins.scssc
458
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_jumbotron.scssc
459
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_navs.scssc
460
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_type.scssc
461
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_media.scssc
462
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_responsive-embed.scssc
463
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_glyphicons.scssc
464
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_pagination.scssc
465
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_normalize.scssc
466
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_button-groups.scssc
467
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_alerts.scssc
468
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_input-groups.scssc
469
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_progress-bars.scssc
470
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_labels.scssc
471
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_tooltip.scssc
472
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_panels.scssc
473
+ - test/dummy/tmp/cache/assets/development/sass/9ae61fe7594fa207b8c0e792a71b3247f2ecb442/_carousel.scssc
474
+ - test/dummy/tmp/cache/assets/development/sprockets/3553ed1f1b382b6b9bcc518b810b271b
475
+ - test/dummy/tmp/cache/assets/development/sprockets/59d3c4356501b88041da3f30a13e79b6
476
+ - test/dummy/tmp/cache/assets/development/sprockets/f32f682108ad3b7c90921211cfedf112
477
+ - test/dummy/tmp/cache/assets/development/sprockets/ee6cfea76b27b0352119a739b66636ad
478
+ - test/dummy/tmp/cache/assets/development/sprockets/eef986a2fcad7c282086103c05fcf9a7
479
+ - test/dummy/tmp/cache/assets/development/sprockets/50483055a8f88061f7d914fa626c5352
480
+ - test/dummy/tmp/cache/assets/development/sprockets/855025ccf2d78ca8086c71dbd05ddb80
481
+ - test/dummy/tmp/cache/assets/development/sprockets/3ddfe27fc34861ca04ca66a0c208c22c
482
+ - test/dummy/tmp/cache/assets/development/sprockets/20b34331df4be4854889a3c23377f45e
483
+ - test/dummy/tmp/cache/assets/development/sprockets/67ab6ab97c6f1be9661cec5fb1fe1bdc
484
+ - test/dummy/tmp/cache/assets/development/sprockets/73076af09d2cc309d096d788850449d6
485
+ - test/dummy/tmp/cache/assets/development/sprockets/cbe8158164315b4f1d1b81ff224c0ef4
486
+ - test/dummy/tmp/cache/assets/development/sprockets/7dcfdb7c49f7e376d6f39367b09fbf5b
487
+ - test/dummy/tmp/cache/assets/development/sprockets/860a9b5297964d6c08619dad24f8cad0
488
+ - test/dummy/tmp/cache/assets/development/sprockets/9a36c88175eb86f93cfc7fc7735e0043
489
+ - test/dummy/tmp/cache/assets/development/sprockets/c219a250b8b465cb233748d3c4bb7288
490
+ - test/dummy/tmp/cache/assets/development/sprockets/6b48cbb5b69311776bf647f5441b8261
491
+ - test/dummy/tmp/cache/assets/development/sprockets/8ac30b42f441d7367b119073c8906c78
492
+ - test/dummy/tmp/cache/assets/development/sprockets/bb9a1e25b5312dc605a09b6789849fdf
493
+ - test/dummy/tmp/cache/assets/development/sprockets/db41ba23a87bb0501594066bbe6306d6
494
+ - test/dummy/tmp/cache/assets/development/sprockets/ead728b75839b122c1534a25c900d55c
495
+ - test/dummy/tmp/cache/assets/development/sprockets/b28ce637ebd1a320b66c1f8df1c38b96
496
+ - test/dummy/tmp/cache/assets/development/sprockets/bbd03989b5854f9ac01c0fe45267492c
497
+ - test/dummy/tmp/cache/assets/development/sprockets/d6c1da9ef1be9fb5132d4dc6a04f95eb
498
+ - test/dummy/tmp/cache/assets/development/sprockets/b5e5faf9bf347d0e0a85cf07fe8222a3
499
+ - test/dummy/tmp/cache/assets/development/sprockets/45171cfb63e99073564e0b228ac28041
500
+ - test/dummy/tmp/cache/assets/development/sprockets/a1d20140ba285327c174b822dc148de2
501
+ - test/dummy/tmp/cache/assets/development/sprockets/5e5f5b6a9fadf420dcf484d703d04112
502
+ - test/dummy/tmp/cache/assets/development/sprockets/1fac683c0f668a2a7fd4ea1062b39fbf
503
+ - test/dummy/tmp/cache/assets/development/sprockets/0682d76393eff7c31b20bbd3eba49fc8
504
+ - test/dummy/tmp/cache/assets/development/sprockets/d5a89fee789601bd5eefc3a114a80745
505
+ - test/dummy/tmp/cache/assets/development/sprockets/ac73d5c7b73b96c8bcaac0821ac18c89
506
+ - test/dummy/tmp/cache/assets/development/sprockets/a25f613a8ecc416a21920d5066359695
507
+ - test/dummy/tmp/cache/assets/development/sprockets/f56098ce403bc1978064a814465248d4
508
+ - test/dummy/tmp/cache/assets/development/sprockets/36f8ae187aff06bd327a0da82211ee0d
509
+ - test/dummy/tmp/cache/assets/development/sprockets/d659ac88af9b82c8f1f5d6188aa9e71a
510
+ - test/dummy/tmp/cache/assets/development/sprockets/93d5e5770edc2798869f9b91fdf3d4b6
511
+ - test/dummy/tmp/cache/assets/development/sprockets/5f31826a3e67ae3c19ad896764e142f2
512
+ - test/dummy/tmp/cache/assets/development/sprockets/f403f6c6e97ccddaf5687f4d36860635
513
+ has_rdoc: