local_pac 0.6.3 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (587) hide show
  1. data/.bowerrc +4 -0
  2. data/.gitignore +1 -0
  3. data/Gemfile.lock +32 -30
  4. data/app/assets/javascripts/application.js +21 -5
  5. data/app/assets/stylesheets/application.css.scss +111 -10
  6. data/app/assets/stylesheets/buttons.scss +81 -0
  7. data/app/controllers/application_controller.rb +51 -15
  8. data/app/controllers/assets_controller.rb +2 -1
  9. data/app/controllers/git_hook_controller.rb +29 -39
  10. data/app/controllers/lookup_controller.rb +41 -6
  11. data/app/locales/en.yml +30 -5
  12. data/app/views/application.haml +12 -1
  13. data/app/views/form.haml +23 -5
  14. data/bin/local_pac +0 -1
  15. data/bower.json +9 -0
  16. data/lib/local_pac/actions/create_file.rb +1 -1
  17. data/lib/local_pac/actions/create_output.rb +1 -1
  18. data/lib/local_pac/actions/handle_error.rb +12 -1
  19. data/lib/local_pac/config.rb +1 -1
  20. data/lib/local_pac/error_handler.rb +54 -7
  21. data/lib/local_pac/error_messages.rb +132 -0
  22. data/lib/local_pac/exceptions.rb +33 -12
  23. data/lib/local_pac/main.rb +11 -0
  24. data/lib/local_pac/pac_file_validator.rb +10 -1
  25. data/lib/local_pac/proxy_pac/pac_engine.rb +9 -6
  26. data/lib/local_pac/proxy_pac/pac_parser.rb +3 -1
  27. data/lib/local_pac/version.rb +1 -1
  28. data/lib/local_pac.rb +4 -2
  29. data/local_pac.gemspec +8 -8
  30. data/script/acceptance_test +0 -0
  31. data/script/bootstrap +59 -1
  32. data/spec/actions/handle_error_spec.rb +45 -0
  33. data/spec/error_handler_spec.rb +89 -8
  34. data/spec/features/check_git_push_spec.rb +2 -2
  35. data/spec/features/lookup_proxy_spec.rb +63 -1
  36. data/spec/pac_file_validator_spec.rb +1 -1
  37. data/spec/proxy_pac/pac_engine_spec.rb +20 -0
  38. data/spec/proxy_pac/pac_parser_spec.rb +1 -1
  39. data/spec/support/helper_features.rb +12 -4
  40. data/spec/support/reporting.rb +5 -1
  41. data/spec/support/rspec.rb +0 -3
  42. data/vendor/assets/components/.keep +0 -0
  43. data/vendor/assets/components/bootstrap/Gruntfile.js +421 -0
  44. data/vendor/assets/components/bootstrap/LICENSE +21 -0
  45. data/vendor/assets/components/bootstrap/README.md +173 -0
  46. data/vendor/assets/components/bootstrap/bower.json +24 -0
  47. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.css +347 -0
  48. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
  49. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
  50. data/vendor/assets/components/bootstrap/dist/css/bootstrap.css +5785 -0
  51. data/vendor/assets/components/bootstrap/dist/css/bootstrap.css.map +1 -0
  52. data/vendor/assets/components/bootstrap/dist/css/bootstrap.min.css +7 -0
  53. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  54. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  55. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  56. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  57. data/vendor/assets/components/bootstrap/dist/js/bootstrap.js +1951 -0
  58. data/vendor/assets/components/bootstrap/dist/js/bootstrap.min.js +6 -0
  59. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  60. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  61. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  62. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  63. data/vendor/assets/components/bootstrap/grunt/bs-glyphicons-data-generator.js +34 -0
  64. data/vendor/assets/components/bootstrap/grunt/bs-lessdoc-parser.js +236 -0
  65. data/vendor/assets/components/bootstrap/grunt/bs-raw-files-generator.js +31 -0
  66. data/vendor/assets/components/bootstrap/grunt/shrinkwrap.js +28 -0
  67. data/vendor/assets/components/bootstrap/js/affix.js +137 -0
  68. data/vendor/assets/components/bootstrap/js/alert.js +88 -0
  69. data/vendor/assets/components/bootstrap/js/button.js +107 -0
  70. data/vendor/assets/components/bootstrap/js/carousel.js +205 -0
  71. data/vendor/assets/components/bootstrap/js/collapse.js +170 -0
  72. data/vendor/assets/components/bootstrap/js/dropdown.js +147 -0
  73. data/vendor/assets/components/bootstrap/js/modal.js +243 -0
  74. data/vendor/assets/components/bootstrap/js/popover.js +110 -0
  75. data/vendor/assets/components/bootstrap/js/scrollspy.js +153 -0
  76. data/vendor/assets/components/bootstrap/js/tab.js +125 -0
  77. data/vendor/assets/components/bootstrap/js/tooltip.js +399 -0
  78. data/vendor/assets/components/bootstrap/js/transition.js +48 -0
  79. data/vendor/assets/components/bootstrap/less/alerts.less +67 -0
  80. data/vendor/assets/components/bootstrap/less/badges.less +55 -0
  81. data/vendor/assets/components/bootstrap/less/bootstrap.less +49 -0
  82. data/vendor/assets/components/bootstrap/less/breadcrumbs.less +26 -0
  83. data/vendor/assets/components/bootstrap/less/button-groups.less +226 -0
  84. data/vendor/assets/components/bootstrap/less/buttons.less +159 -0
  85. data/vendor/assets/components/bootstrap/less/carousel.less +232 -0
  86. data/vendor/assets/components/bootstrap/less/close.less +33 -0
  87. data/vendor/assets/components/bootstrap/less/code.less +63 -0
  88. data/vendor/assets/components/bootstrap/less/component-animations.less +29 -0
  89. data/vendor/assets/components/bootstrap/less/dropdowns.less +213 -0
  90. data/vendor/assets/components/bootstrap/less/forms.less +438 -0
  91. data/vendor/assets/components/bootstrap/less/glyphicons.less +233 -0
  92. data/vendor/assets/components/bootstrap/less/grid.less +84 -0
  93. data/vendor/assets/components/bootstrap/less/input-groups.less +162 -0
  94. data/vendor/assets/components/bootstrap/less/jumbotron.less +44 -0
  95. data/vendor/assets/components/bootstrap/less/labels.less +64 -0
  96. data/vendor/assets/components/bootstrap/less/list-group.less +110 -0
  97. data/vendor/assets/components/bootstrap/less/media.less +56 -0
  98. data/vendor/assets/components/bootstrap/less/mixins.less +929 -0
  99. data/vendor/assets/components/bootstrap/less/modals.less +139 -0
  100. data/vendor/assets/components/bootstrap/less/navbar.less +616 -0
  101. data/vendor/assets/components/bootstrap/less/navs.less +242 -0
  102. data/vendor/assets/components/bootstrap/less/normalize.less +423 -0
  103. data/vendor/assets/components/bootstrap/less/pager.less +55 -0
  104. data/vendor/assets/components/bootstrap/less/pagination.less +88 -0
  105. data/vendor/assets/components/bootstrap/less/panels.less +241 -0
  106. data/vendor/assets/components/bootstrap/less/popovers.less +133 -0
  107. data/vendor/assets/components/bootstrap/less/print.less +101 -0
  108. data/vendor/assets/components/bootstrap/less/progress-bars.less +80 -0
  109. data/vendor/assets/components/bootstrap/less/responsive-utilities.less +92 -0
  110. data/vendor/assets/components/bootstrap/less/scaffolding.less +134 -0
  111. data/vendor/assets/components/bootstrap/less/tables.less +233 -0
  112. data/vendor/assets/components/bootstrap/less/theme.less +247 -0
  113. data/vendor/assets/components/bootstrap/less/thumbnails.less +36 -0
  114. data/vendor/assets/components/bootstrap/less/tooltip.less +95 -0
  115. data/vendor/assets/components/bootstrap/less/type.less +293 -0
  116. data/vendor/assets/components/bootstrap/less/utilities.less +56 -0
  117. data/vendor/assets/components/bootstrap/less/variables.less +829 -0
  118. data/vendor/assets/components/bootstrap/less/wells.less +29 -0
  119. data/vendor/assets/components/bootstrap/package.json +70 -0
  120. data/vendor/assets/components/bootstrap/test-infra/README.md +100 -0
  121. data/vendor/assets/components/bootstrap/test-infra/npm-shrinkwrap.canonical.json +1 -0
  122. data/vendor/assets/components/bootstrap/test-infra/requirements.txt +1 -0
  123. data/vendor/assets/components/bootstrap/test-infra/s3_cache.py +107 -0
  124. data/vendor/assets/components/bootstrap/test-infra/sauce_browsers.yml +83 -0
  125. data/vendor/assets/components/bootstrap/test-infra/uncached-npm-install.sh +4 -0
  126. data/vendor/assets/components/bootstrap-sass/CNAME +1 -0
  127. data/vendor/assets/components/bootstrap-sass/CONTRIBUTING.md +61 -0
  128. data/vendor/assets/components/bootstrap-sass/DOCS-LICENSE +319 -0
  129. data/vendor/assets/components/bootstrap-sass/Gemfile +5 -0
  130. data/vendor/assets/components/bootstrap-sass/Gemfile.lock +14 -0
  131. data/vendor/assets/components/bootstrap-sass/Gruntfile.js +244 -0
  132. data/vendor/assets/components/bootstrap-sass/LICENSE +176 -0
  133. data/vendor/assets/components/bootstrap-sass/LICENSE-MIT +21 -0
  134. data/vendor/assets/components/bootstrap-sass/README.md +277 -0
  135. data/vendor/assets/components/bootstrap-sass/Rakefile +44 -0
  136. data/vendor/assets/components/bootstrap-sass/_config.yml +25 -0
  137. data/vendor/assets/components/bootstrap-sass/_includes/ads.html +1 -0
  138. data/vendor/assets/components/bootstrap-sass/_includes/footer.html +34 -0
  139. data/vendor/assets/components/bootstrap-sass/_includes/header.html +42 -0
  140. data/vendor/assets/components/bootstrap-sass/_includes/nav-about.html +12 -0
  141. data/vendor/assets/components/bootstrap-sass/_includes/nav-components.html +137 -0
  142. data/vendor/assets/components/bootstrap-sass/_includes/nav-css.html +99 -0
  143. data/vendor/assets/components/bootstrap-sass/_includes/nav-customize.html +40 -0
  144. data/vendor/assets/components/bootstrap-sass/_includes/nav-getting-started.html +44 -0
  145. data/vendor/assets/components/bootstrap-sass/_includes/nav-javascript.html +88 -0
  146. data/vendor/assets/components/bootstrap-sass/_includes/nav-main.html +37 -0
  147. data/vendor/assets/components/bootstrap-sass/_includes/old-bs-docs.html +8 -0
  148. data/vendor/assets/components/bootstrap-sass/_includes/social-buttons.html +16 -0
  149. data/vendor/assets/components/bootstrap-sass/_layouts/default.html +79 -0
  150. data/vendor/assets/components/bootstrap-sass/_layouts/home.html +47 -0
  151. data/vendor/assets/components/bootstrap-sass/about.html +93 -0
  152. data/vendor/assets/components/bootstrap-sass/bower.json +11 -0
  153. data/vendor/assets/components/bootstrap-sass/browserstack.json +37 -0
  154. data/vendor/assets/components/bootstrap-sass/components.html +3689 -0
  155. data/vendor/assets/components/bootstrap-sass/composer.json +28 -0
  156. data/vendor/assets/components/bootstrap-sass/css.html +2674 -0
  157. data/vendor/assets/components/bootstrap-sass/customize.html +1715 -0
  158. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap-theme.css +427 -0
  159. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap-theme.min.css +1 -0
  160. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap.css +6350 -0
  161. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap.min.css +1 -0
  162. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  163. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  164. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  165. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  166. data/vendor/assets/components/bootstrap-sass/dist/js/bootstrap.js +2002 -0
  167. data/vendor/assets/components/bootstrap-sass/dist/js/bootstrap.min.js +9 -0
  168. data/vendor/assets/components/bootstrap-sass/docs-assets/css/docs.css +1195 -0
  169. data/vendor/assets/components/bootstrap-sass/docs-assets/css/pygments-manni.css +66 -0
  170. data/vendor/assets/components/bootstrap-sass/docs-assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  171. data/vendor/assets/components/bootstrap-sass/docs-assets/ico/favicon.png +0 -0
  172. data/vendor/assets/components/bootstrap-sass/docs-assets/js/application.js +103 -0
  173. data/vendor/assets/components/bootstrap-sass/docs-assets/js/customizer.js +332 -0
  174. data/vendor/assets/components/bootstrap-sass/docs-assets/js/filesaver.js +169 -0
  175. data/vendor/assets/components/bootstrap-sass/docs-assets/js/holder.js +404 -0
  176. data/vendor/assets/components/bootstrap-sass/docs-assets/js/ie8-responsive-file-warning.js +12 -0
  177. data/vendor/assets/components/bootstrap-sass/docs-assets/js/jszip.js +1467 -0
  178. data/vendor/assets/components/bootstrap-sass/docs-assets/js/less.js +9 -0
  179. data/vendor/assets/components/bootstrap-sass/docs-assets/js/raw-files.js +3 -0
  180. data/vendor/assets/components/bootstrap-sass/docs-assets/js/uglify.js +14 -0
  181. data/vendor/assets/components/bootstrap-sass/examples/carousel/carousel.css +148 -0
  182. data/vendor/assets/components/bootstrap-sass/examples/carousel/index.html +206 -0
  183. data/vendor/assets/components/bootstrap-sass/examples/grid/grid.css +28 -0
  184. data/vendor/assets/components/bootstrap-sass/examples/grid/index.html +148 -0
  185. data/vendor/assets/components/bootstrap-sass/examples/jumbotron/index.html +99 -0
  186. data/vendor/assets/components/bootstrap-sass/examples/jumbotron/jumbotron.css +5 -0
  187. data/vendor/assets/components/bootstrap-sass/examples/jumbotron-narrow/index.html +82 -0
  188. data/vendor/assets/components/bootstrap-sass/examples/jumbotron-narrow/jumbotron-narrow.css +79 -0
  189. data/vendor/assets/components/bootstrap-sass/examples/justified-nav/index.html +83 -0
  190. data/vendor/assets/components/bootstrap-sass/examples/justified-nav/justified-nav.css +88 -0
  191. data/vendor/assets/components/bootstrap-sass/examples/navbar/index.html +88 -0
  192. data/vendor/assets/components/bootstrap-sass/examples/navbar/navbar.css +8 -0
  193. data/vendor/assets/components/bootstrap-sass/examples/navbar-fixed-top/index.html +91 -0
  194. data/vendor/assets/components/bootstrap-sass/examples/navbar-fixed-top/navbar-fixed-top.css +4 -0
  195. data/vendor/assets/components/bootstrap-sass/examples/navbar-static-top/index.html +92 -0
  196. data/vendor/assets/components/bootstrap-sass/examples/navbar-static-top/navbar-static-top.css +7 -0
  197. data/vendor/assets/components/bootstrap-sass/examples/non-responsive/index.html +101 -0
  198. data/vendor/assets/components/bootstrap-sass/examples/non-responsive/non-responsive.css +116 -0
  199. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/index.html +130 -0
  200. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/offcanvas.css +50 -0
  201. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/offcanvas.js +5 -0
  202. data/vendor/assets/components/bootstrap-sass/examples/screenshots/carousel.jpg +0 -0
  203. data/vendor/assets/components/bootstrap-sass/examples/screenshots/grid.jpg +0 -0
  204. data/vendor/assets/components/bootstrap-sass/examples/screenshots/jumbotron-narrow.jpg +0 -0
  205. data/vendor/assets/components/bootstrap-sass/examples/screenshots/jumbotron.jpg +0 -0
  206. data/vendor/assets/components/bootstrap-sass/examples/screenshots/justified-nav.jpg +0 -0
  207. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar-fixed.jpg +0 -0
  208. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar-static.jpg +0 -0
  209. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar.jpg +0 -0
  210. data/vendor/assets/components/bootstrap-sass/examples/screenshots/non-responsive.jpg +0 -0
  211. data/vendor/assets/components/bootstrap-sass/examples/screenshots/offcanvas.jpg +0 -0
  212. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sign-in.jpg +0 -0
  213. data/vendor/assets/components/bootstrap-sass/examples/screenshots/starter-template.jpg +0 -0
  214. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sticky-footer-navbar.jpg +0 -0
  215. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sticky-footer.jpg +0 -0
  216. data/vendor/assets/components/bootstrap-sass/examples/screenshots/theme.jpg +0 -0
  217. data/vendor/assets/components/bootstrap-sass/examples/signin/index.html +50 -0
  218. data/vendor/assets/components/bootstrap-sass/examples/signin/signin.css +40 -0
  219. data/vendor/assets/components/bootstrap-sass/examples/starter-template/index.html +68 -0
  220. data/vendor/assets/components/bootstrap-sass/examples/starter-template/starter-template.css +7 -0
  221. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer/index.html +55 -0
  222. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer/sticky-footer.css +38 -0
  223. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer-navbar/index.html +91 -0
  224. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer-navbar/sticky-footer-navbar.css +45 -0
  225. data/vendor/assets/components/bootstrap-sass/examples/theme/index.html +384 -0
  226. data/vendor/assets/components/bootstrap-sass/examples/theme/theme.css +14 -0
  227. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.eot +0 -0
  228. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.svg +229 -0
  229. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.ttf +0 -0
  230. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.woff +0 -0
  231. data/vendor/assets/components/bootstrap-sass/getting-started.html +1021 -0
  232. data/vendor/assets/components/bootstrap-sass/index.html +16 -0
  233. data/vendor/assets/components/bootstrap-sass/javascript.html +1983 -0
  234. data/vendor/assets/components/bootstrap-sass/js/affix.js +126 -0
  235. data/vendor/assets/components/bootstrap-sass/js/alert.js +98 -0
  236. data/vendor/assets/components/bootstrap-sass/js/button.js +109 -0
  237. data/vendor/assets/components/bootstrap-sass/js/carousel.js +217 -0
  238. data/vendor/assets/components/bootstrap-sass/js/collapse.js +179 -0
  239. data/vendor/assets/components/bootstrap-sass/js/dropdown.js +154 -0
  240. data/vendor/assets/components/bootstrap-sass/js/modal.js +246 -0
  241. data/vendor/assets/components/bootstrap-sass/js/popover.js +117 -0
  242. data/vendor/assets/components/bootstrap-sass/js/scrollspy.js +158 -0
  243. data/vendor/assets/components/bootstrap-sass/js/tab.js +135 -0
  244. data/vendor/assets/components/bootstrap-sass/js/tests/index.html +52 -0
  245. data/vendor/assets/components/bootstrap-sass/js/tests/unit/affix.js +25 -0
  246. data/vendor/assets/components/bootstrap-sass/js/tests/unit/alert.js +62 -0
  247. data/vendor/assets/components/bootstrap-sass/js/tests/unit/button.js +116 -0
  248. data/vendor/assets/components/bootstrap-sass/js/tests/unit/carousel.js +87 -0
  249. data/vendor/assets/components/bootstrap-sass/js/tests/unit/collapse.js +164 -0
  250. data/vendor/assets/components/bootstrap-sass/js/tests/unit/dropdown.js +219 -0
  251. data/vendor/assets/components/bootstrap-sass/js/tests/unit/modal.js +196 -0
  252. data/vendor/assets/components/bootstrap-sass/js/tests/unit/phantom.js +69 -0
  253. data/vendor/assets/components/bootstrap-sass/js/tests/unit/popover.js +133 -0
  254. data/vendor/assets/components/bootstrap-sass/js/tests/unit/scrollspy.js +37 -0
  255. data/vendor/assets/components/bootstrap-sass/js/tests/unit/tab.js +86 -0
  256. data/vendor/assets/components/bootstrap-sass/js/tests/unit/tooltip.js +437 -0
  257. data/vendor/assets/components/bootstrap-sass/js/tests/unit/transition.js +13 -0
  258. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/jquery.js +6 -0
  259. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/qunit.css +232 -0
  260. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/qunit.js +1510 -0
  261. data/vendor/assets/components/bootstrap-sass/js/tooltip.js +386 -0
  262. data/vendor/assets/components/bootstrap-sass/js/transition.js +56 -0
  263. data/vendor/assets/components/bootstrap-sass/lib/_alerts.scss +67 -0
  264. data/vendor/assets/components/bootstrap-sass/lib/_badges.scss +51 -0
  265. data/vendor/assets/components/bootstrap-sass/lib/_breadcrumbs.scss +23 -0
  266. data/vendor/assets/components/bootstrap-sass/lib/_button-groups.scss +253 -0
  267. data/vendor/assets/components/bootstrap-sass/lib/_buttons.scss +158 -0
  268. data/vendor/assets/components/bootstrap-sass/lib/_carousel.scss +231 -0
  269. data/vendor/assets/components/bootstrap-sass/lib/_close.scss +35 -0
  270. data/vendor/assets/components/bootstrap-sass/lib/_code.scss +53 -0
  271. data/vendor/assets/components/bootstrap-sass/lib/_component-animations.scss +29 -0
  272. data/vendor/assets/components/bootstrap-sass/lib/_dropdowns.scss +193 -0
  273. data/vendor/assets/components/bootstrap-sass/lib/_forms.scss +363 -0
  274. data/vendor/assets/components/bootstrap-sass/lib/_glyphicons.scss +237 -0
  275. data/vendor/assets/components/bootstrap-sass/lib/_grid.scss +93 -0
  276. data/vendor/assets/components/bootstrap-sass/lib/_input-groups.scss +136 -0
  277. data/vendor/assets/components/bootstrap-sass/lib/_jumbotron.scss +40 -0
  278. data/vendor/assets/components/bootstrap-sass/lib/_labels.scss +58 -0
  279. data/vendor/assets/components/bootstrap-sass/lib/_list-group.scss +88 -0
  280. data/vendor/assets/components/bootstrap-sass/lib/_media.scss +56 -0
  281. data/vendor/assets/components/bootstrap-sass/lib/_mixins.scss +861 -0
  282. data/vendor/assets/components/bootstrap-sass/lib/_modals.scss +132 -0
  283. data/vendor/assets/components/bootstrap-sass/lib/_navbar.scss +628 -0
  284. data/vendor/assets/components/bootstrap-sass/lib/_navs.scss +262 -0
  285. data/vendor/assets/components/bootstrap-sass/lib/_normalize.scss +406 -0
  286. data/vendor/assets/components/bootstrap-sass/lib/_pager.scss +55 -0
  287. data/vendor/assets/components/bootstrap-sass/lib/_pagination.scss +85 -0
  288. data/vendor/assets/components/bootstrap-sass/lib/_panels.scss +172 -0
  289. data/vendor/assets/components/bootstrap-sass/lib/_popovers.scss +133 -0
  290. data/vendor/assets/components/bootstrap-sass/lib/_print.scss +105 -0
  291. data/vendor/assets/components/bootstrap-sass/lib/_progress-bars.scss +92 -0
  292. data/vendor/assets/components/bootstrap-sass/lib/_responsive-utilities.scss +198 -0
  293. data/vendor/assets/components/bootstrap-sass/lib/_scaffolding.scss +119 -0
  294. data/vendor/assets/components/bootstrap-sass/lib/_tables.scss +244 -0
  295. data/vendor/assets/components/bootstrap-sass/lib/_theme.scss +247 -0
  296. data/vendor/assets/components/bootstrap-sass/lib/_thumbnails.scss +32 -0
  297. data/vendor/assets/components/bootstrap-sass/lib/_tooltip.scss +95 -0
  298. data/vendor/assets/components/bootstrap-sass/lib/_type.scss +279 -0
  299. data/vendor/assets/components/bootstrap-sass/lib/_utilities.scss +56 -0
  300. data/vendor/assets/components/bootstrap-sass/lib/_variables.scss +637 -0
  301. data/vendor/assets/components/bootstrap-sass/lib/_wells.scss +29 -0
  302. data/vendor/assets/components/bootstrap-sass/lib/bootstrap.scss +49 -0
  303. data/vendor/assets/components/bootstrap-sass/package.json +40 -0
  304. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/CONTRIBUTING.md +12 -0
  305. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/LICENSE +201 -0
  306. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/Makefile +22 -0
  307. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/README.md +144 -0
  308. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/bower.json +35 -0
  309. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.css +174 -0
  310. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css +8 -0
  311. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js +28 -0
  312. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/component.json +10 -0
  313. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/package.json +24 -0
  314. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +1089 -0
  315. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ar-ma.js +56 -0
  316. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ar.js +56 -0
  317. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.bg.js +86 -0
  318. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.br.js +107 -0
  319. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.bs.js +139 -0
  320. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ca.js +66 -0
  321. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.cs.js +155 -0
  322. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.cv.js +59 -0
  323. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.da.js +56 -0
  324. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.de.js +71 -0
  325. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.el.js +79 -0
  326. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-au.js +62 -0
  327. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-ca.js +59 -0
  328. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-gb.js +63 -0
  329. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.eo.js +65 -0
  330. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.es.js +66 -0
  331. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.et.js +60 -0
  332. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.eu.js +60 -0
  333. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fa.js +97 -0
  334. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fi.js +103 -0
  335. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fr-ca.js +54 -0
  336. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fr.js +58 -0
  337. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.gl.js +71 -0
  338. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.he.js +77 -0
  339. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hi.js +105 -0
  340. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hr.js +140 -0
  341. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hu.js +98 -0
  342. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.id.js +67 -0
  343. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.is.js +124 -0
  344. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.it.js +59 -0
  345. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ja.js +58 -0
  346. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ka.js +108 -0
  347. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ko.js +56 -0
  348. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.lt.js +118 -0
  349. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.lv.js +77 -0
  350. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ml.js +64 -0
  351. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.mr.js +104 -0
  352. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ms-my.js +66 -0
  353. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nb.js +57 -0
  354. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ne.js +105 -0
  355. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nl.js +67 -0
  356. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nn.js +56 -0
  357. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pl.js +98 -0
  358. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pt-BR.js +56 -0
  359. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pt.js +60 -0
  360. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ro.js +56 -0
  361. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ru.js +163 -0
  362. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sk.js +156 -0
  363. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sl.js +144 -0
  364. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sq.js +57 -0
  365. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sv.js +63 -0
  366. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.th.js +58 -0
  367. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tr.js +93 -0
  368. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tzm-la.js +55 -0
  369. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tzm.js +55 -0
  370. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.uk.js +157 -0
  371. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.uz.js +55 -0
  372. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.vn.js +62 -0
  373. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.zh-CN.js +108 -0
  374. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.zh-TW.js +84 -0
  375. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less +5 -0
  376. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker.less +246 -0
  377. data/vendor/assets/components/jquery/MIT-LICENSE.txt +21 -0
  378. data/vendor/assets/components/jquery/bower.json +27 -0
  379. data/vendor/assets/components/jquery/dist/jquery.js +9111 -0
  380. data/{app/assets/javascripts/jquery-min.js → vendor/assets/components/jquery/dist/jquery.min.js} +1 -0
  381. data/vendor/assets/components/jquery/dist/jquery.min.map +1 -0
  382. data/vendor/assets/components/jquery/src/ajax/jsonp.js +89 -0
  383. data/vendor/assets/components/jquery/src/ajax/load.js +75 -0
  384. data/vendor/assets/components/jquery/src/ajax/parseJSON.js +13 -0
  385. data/vendor/assets/components/jquery/src/ajax/parseXML.js +28 -0
  386. data/vendor/assets/components/jquery/src/ajax/script.js +64 -0
  387. data/vendor/assets/components/jquery/src/ajax/var/nonce.js +5 -0
  388. data/vendor/assets/components/jquery/src/ajax/var/rquery.js +3 -0
  389. data/vendor/assets/components/jquery/src/ajax/xhr.js +130 -0
  390. data/vendor/assets/components/jquery/src/ajax.js +806 -0
  391. data/vendor/assets/components/jquery/src/attributes/attr.js +143 -0
  392. data/vendor/assets/components/jquery/src/attributes/classes.js +158 -0
  393. data/vendor/assets/components/jquery/src/attributes/prop.js +96 -0
  394. data/vendor/assets/components/jquery/src/attributes/support.js +35 -0
  395. data/vendor/assets/components/jquery/src/attributes/val.js +153 -0
  396. data/vendor/assets/components/jquery/src/attributes.js +11 -0
  397. data/vendor/assets/components/jquery/src/callbacks.js +205 -0
  398. data/vendor/assets/components/jquery/src/core/access.js +60 -0
  399. data/vendor/assets/components/jquery/src/core/init.js +123 -0
  400. data/vendor/assets/components/jquery/src/core/parseHTML.js +39 -0
  401. data/vendor/assets/components/jquery/src/core/ready.js +96 -0
  402. data/vendor/assets/components/jquery/src/core/var/rsingleTag.js +4 -0
  403. data/vendor/assets/components/jquery/src/core.js +500 -0
  404. data/vendor/assets/components/jquery/src/css/addGetHookIf.js +24 -0
  405. data/vendor/assets/components/jquery/src/css/curCSS.js +57 -0
  406. data/vendor/assets/components/jquery/src/css/defaultDisplay.js +69 -0
  407. data/vendor/assets/components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  408. data/vendor/assets/components/jquery/src/css/support.js +83 -0
  409. data/vendor/assets/components/jquery/src/css/swap.js +28 -0
  410. data/vendor/assets/components/jquery/src/css/var/cssExpand.js +3 -0
  411. data/vendor/assets/components/jquery/src/css/var/getStyles.js +5 -0
  412. data/vendor/assets/components/jquery/src/css/var/isHidden.js +13 -0
  413. data/vendor/assets/components/jquery/src/css/var/rmargin.js +3 -0
  414. data/vendor/assets/components/jquery/src/css/var/rnumnonpx.js +5 -0
  415. data/vendor/assets/components/jquery/src/css.js +455 -0
  416. data/vendor/assets/components/jquery/src/data/Data.js +181 -0
  417. data/vendor/assets/components/jquery/src/data/accepts.js +20 -0
  418. data/vendor/assets/components/jquery/src/data/var/data_priv.js +5 -0
  419. data/vendor/assets/components/jquery/src/data/var/data_user.js +5 -0
  420. data/vendor/assets/components/jquery/src/data.js +175 -0
  421. data/vendor/assets/components/jquery/src/deferred.js +149 -0
  422. data/vendor/assets/components/jquery/src/deprecated.js +13 -0
  423. data/vendor/assets/components/jquery/src/dimensions.js +50 -0
  424. data/vendor/assets/components/jquery/src/effects/Tween.js +114 -0
  425. data/vendor/assets/components/jquery/src/effects/animatedSelector.js +13 -0
  426. data/vendor/assets/components/jquery/src/effects.js +642 -0
  427. data/vendor/assets/components/jquery/src/event/alias.js +39 -0
  428. data/vendor/assets/components/jquery/src/event/support.js +9 -0
  429. data/vendor/assets/components/jquery/src/event.js +859 -0
  430. data/vendor/assets/components/jquery/src/exports/amd.js +18 -0
  431. data/vendor/assets/components/jquery/src/exports/global.js +32 -0
  432. data/vendor/assets/components/jquery/src/intro.js +44 -0
  433. data/vendor/assets/components/jquery/src/jquery.js +36 -0
  434. data/vendor/assets/components/jquery/src/manipulation/_evalUrl.js +18 -0
  435. data/vendor/assets/components/jquery/src/manipulation/support.js +24 -0
  436. data/vendor/assets/components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  437. data/vendor/assets/components/jquery/src/manipulation.js +583 -0
  438. data/vendor/assets/components/jquery/src/offset.js +204 -0
  439. data/vendor/assets/components/jquery/src/outro.js +1 -0
  440. data/vendor/assets/components/jquery/src/queue/delay.js +22 -0
  441. data/vendor/assets/components/jquery/src/queue.js +142 -0
  442. data/vendor/assets/components/jquery/src/selector-native.js +171 -0
  443. data/vendor/assets/components/jquery/src/selector-sizzle.js +14 -0
  444. data/vendor/assets/components/jquery/src/selector.js +1 -0
  445. data/vendor/assets/components/jquery/src/serialize.js +111 -0
  446. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  447. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  448. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  449. data/vendor/assets/components/jquery/src/traversing/findFilter.js +100 -0
  450. data/vendor/assets/components/jquery/src/traversing/var/rneedsContext.js +6 -0
  451. data/vendor/assets/components/jquery/src/traversing.js +200 -0
  452. data/vendor/assets/components/jquery/src/var/arr.js +3 -0
  453. data/vendor/assets/components/jquery/src/var/class2type.js +4 -0
  454. data/vendor/assets/components/jquery/src/var/concat.js +5 -0
  455. data/vendor/assets/components/jquery/src/var/hasOwn.js +5 -0
  456. data/vendor/assets/components/jquery/src/var/indexOf.js +5 -0
  457. data/vendor/assets/components/jquery/src/var/pnum.js +3 -0
  458. data/vendor/assets/components/jquery/src/var/push.js +5 -0
  459. data/vendor/assets/components/jquery/src/var/rnotwhite.js +3 -0
  460. data/vendor/assets/components/jquery/src/var/slice.js +5 -0
  461. data/vendor/assets/components/jquery/src/var/strundefined.js +3 -0
  462. data/vendor/assets/components/jquery/src/var/support.js +4 -0
  463. data/vendor/assets/components/jquery/src/var/toString.js +5 -0
  464. data/vendor/assets/components/jquery/src/var/trim.js +3 -0
  465. data/vendor/assets/components/jquery/src/wrap.js +78 -0
  466. data/vendor/assets/components/moment/LICENSE +22 -0
  467. data/vendor/assets/components/moment/bower.json +20 -0
  468. data/vendor/assets/components/moment/lang/ar-ma.js +56 -0
  469. data/vendor/assets/components/moment/lang/ar.js +56 -0
  470. data/vendor/assets/components/moment/lang/bg.js +86 -0
  471. data/vendor/assets/components/moment/lang/br.js +107 -0
  472. data/vendor/assets/components/moment/lang/bs.js +139 -0
  473. data/vendor/assets/components/moment/lang/ca.js +66 -0
  474. data/vendor/assets/components/moment/lang/cs.js +155 -0
  475. data/vendor/assets/components/moment/lang/cv.js +59 -0
  476. data/vendor/assets/components/moment/lang/cy.js +77 -0
  477. data/vendor/assets/components/moment/lang/da.js +56 -0
  478. data/vendor/assets/components/moment/lang/de.js +71 -0
  479. data/vendor/assets/components/moment/lang/el.js +79 -0
  480. data/vendor/assets/components/moment/lang/en-au.js +62 -0
  481. data/vendor/assets/components/moment/lang/en-ca.js +59 -0
  482. data/vendor/assets/components/moment/lang/en-gb.js +63 -0
  483. data/vendor/assets/components/moment/lang/eo.js +65 -0
  484. data/vendor/assets/components/moment/lang/es.js +66 -0
  485. data/vendor/assets/components/moment/lang/et.js +76 -0
  486. data/vendor/assets/components/moment/lang/eu.js +60 -0
  487. data/vendor/assets/components/moment/lang/fa.js +97 -0
  488. data/vendor/assets/components/moment/lang/fi.js +103 -0
  489. data/vendor/assets/components/moment/lang/fo.js +56 -0
  490. data/vendor/assets/components/moment/lang/fr-ca.js +54 -0
  491. data/vendor/assets/components/moment/lang/fr.js +58 -0
  492. data/vendor/assets/components/moment/lang/gl.js +71 -0
  493. data/vendor/assets/components/moment/lang/he.js +77 -0
  494. data/vendor/assets/components/moment/lang/hi.js +105 -0
  495. data/vendor/assets/components/moment/lang/hr.js +140 -0
  496. data/vendor/assets/components/moment/lang/hu.js +98 -0
  497. data/vendor/assets/components/moment/lang/hy-am.js +113 -0
  498. data/vendor/assets/components/moment/lang/id.js +67 -0
  499. data/vendor/assets/components/moment/lang/is.js +124 -0
  500. data/vendor/assets/components/moment/lang/it.js +59 -0
  501. data/vendor/assets/components/moment/lang/ja.js +58 -0
  502. data/vendor/assets/components/moment/lang/ka.js +108 -0
  503. data/vendor/assets/components/moment/lang/ko.js +63 -0
  504. data/vendor/assets/components/moment/lang/lb.js +160 -0
  505. data/vendor/assets/components/moment/lang/lt.js +118 -0
  506. data/vendor/assets/components/moment/lang/lv.js +77 -0
  507. data/vendor/assets/components/moment/lang/mk.js +86 -0
  508. data/vendor/assets/components/moment/lang/ml.js +64 -0
  509. data/vendor/assets/components/moment/lang/mr.js +104 -0
  510. data/vendor/assets/components/moment/lang/ms-my.js +66 -0
  511. data/vendor/assets/components/moment/lang/nb.js +57 -0
  512. data/vendor/assets/components/moment/lang/ne.js +105 -0
  513. data/vendor/assets/components/moment/lang/nl.js +67 -0
  514. data/vendor/assets/components/moment/lang/nn.js +56 -0
  515. data/vendor/assets/components/moment/lang/pl.js +98 -0
  516. data/vendor/assets/components/moment/lang/pt-br.js +56 -0
  517. data/vendor/assets/components/moment/lang/pt.js +60 -0
  518. data/vendor/assets/components/moment/lang/ro.js +72 -0
  519. data/vendor/assets/components/moment/lang/rs.js +139 -0
  520. data/vendor/assets/components/moment/lang/ru.js +163 -0
  521. data/vendor/assets/components/moment/lang/sk.js +156 -0
  522. data/vendor/assets/components/moment/lang/sl.js +144 -0
  523. data/vendor/assets/components/moment/lang/sq.js +57 -0
  524. data/vendor/assets/components/moment/lang/sv.js +63 -0
  525. data/vendor/assets/components/moment/lang/ta.js +112 -0
  526. data/vendor/assets/components/moment/lang/th.js +58 -0
  527. data/vendor/assets/components/moment/lang/tl-ph.js +58 -0
  528. data/vendor/assets/components/moment/lang/tr.js +93 -0
  529. data/vendor/assets/components/moment/lang/tzm-la.js +55 -0
  530. data/vendor/assets/components/moment/lang/tzm.js +55 -0
  531. data/vendor/assets/components/moment/lang/uk.js +157 -0
  532. data/vendor/assets/components/moment/lang/uz.js +55 -0
  533. data/vendor/assets/components/moment/lang/vn.js +62 -0
  534. data/vendor/assets/components/moment/lang/zh-cn.js +108 -0
  535. data/vendor/assets/components/moment/lang/zh-tw.js +84 -0
  536. data/vendor/assets/components/moment/min/langs.js +5841 -0
  537. data/vendor/assets/components/moment/min/langs.min.js +3 -0
  538. data/vendor/assets/components/moment/min/moment-with-langs.js +7768 -0
  539. data/vendor/assets/components/moment/min/moment-with-langs.min.js +9 -0
  540. data/vendor/assets/components/moment/min/moment.min.js +6 -0
  541. data/vendor/assets/components/moment/moment.js +2400 -0
  542. data/vendor/assets/components/moment/readme.md +349 -0
  543. data/{app → vendor}/assets/fonts/open-sans/Apache License Version 2.txt +0 -0
  544. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.eot +0 -0
  545. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.svg +0 -0
  546. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.ttf +0 -0
  547. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.woff +0 -0
  548. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.eot +0 -0
  549. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.svg +0 -0
  550. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.ttf +0 -0
  551. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.woff +0 -0
  552. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.eot +0 -0
  553. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.svg +0 -0
  554. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.ttf +0 -0
  555. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.woff +0 -0
  556. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
  557. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.svg +0 -0
  558. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
  559. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
  560. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.eot +0 -0
  561. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.svg +0 -0
  562. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.ttf +0 -0
  563. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.woff +0 -0
  564. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.eot +0 -0
  565. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.svg +0 -0
  566. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.ttf +0 -0
  567. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.woff +0 -0
  568. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.eot +0 -0
  569. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.svg +0 -0
  570. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.ttf +0 -0
  571. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.woff +0 -0
  572. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.eot +0 -0
  573. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.svg +0 -0
  574. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.ttf +0 -0
  575. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.woff +0 -0
  576. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.eot +0 -0
  577. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.svg +0 -0
  578. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.ttf +0 -0
  579. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.woff +0 -0
  580. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.eot +0 -0
  581. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.svg +0 -0
  582. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  583. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.woff +0 -0
  584. data/{app → vendor}/assets/stylesheets/open-sans.css.scss +0 -0
  585. metadata +556 -49
  586. data/lib/local_pac/runner.rb +0 -29
  587. data/spec/runner_spec.rb +0 -42
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Twitter, Inc
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,277 @@
1
+ # [Bootstrap](http://getbootstrap.com) [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.png)](http://travis-ci.org/twbs/bootstrap) [![devDependency Status](https://david-dm.org/twbs/bootstrap/dev-status.png)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
2
+
3
+ Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
4
+
5
+ This is the Sass version of Bootstrap. A port of Bootstrap from Less to Sass. This project is focused on being a 1:1 port of the original. Please do not submit issues or pull requests for issues with Bootstrap itself. Those should be pushed upstream in the Less version.
6
+
7
+ To get started, check out <http://getbootstrap.com>!
8
+
9
+
10
+
11
+ ## SASS: Quick start
12
+
13
+ Three quick start options are available:
14
+
15
+ * [Download the latest release](https://github.com/jlong/sass-twitter-bootstrap/zipball/master).
16
+ * Clone the repo: `git clone git://github.com/jlong/sass-bootstrap.git`.
17
+ * Install with [Bower](http://bower.io): `bower install --save sass-bootstrap`.
18
+
19
+
20
+
21
+ ## SASS: Usage
22
+
23
+ You can use the Sass Bootstrap by dropping the compiled CSS into any new project and start cranking.
24
+
25
+ Because SASS always outputs standard css, just link to the final output like normal:
26
+
27
+ `<link rel="stylesheet" type="text/css" href="./dist/css/bootstrap.css">`
28
+
29
+ For more info, refer to the docs!
30
+
31
+
32
+
33
+ ## SASS: Basic modification
34
+
35
+ You can learn more about Sass at:
36
+
37
+ [sass-lang.com](http://sass-lang.com)
38
+
39
+ Sass runs as a local GEM on your system. You can run `sass --watch lib/bootstrap.scss:dist/css/bootstrap.css`
40
+
41
+
42
+
43
+ ## Quick start
44
+
45
+ Three quick start options are available:
46
+
47
+ * [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.0.2.zip).
48
+ * Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
49
+ * Install with [Bower](http://bower.io): `bower install bootstrap`.
50
+
51
+ Read the [Getting Started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
52
+
53
+ ### What's included
54
+
55
+ Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
56
+
57
+ ```
58
+ bootstrap/
59
+ ├── css/
60
+ │ ├── bootstrap.css
61
+ │ ├── bootstrap.min.css
62
+ │ ├── bootstrap-theme.css
63
+ │ └── bootstrap-theme.min.css
64
+ ├── js/
65
+ │ ├── bootstrap.js
66
+ │ └── bootstrap.min.js
67
+ └── fonts/
68
+ ├── glyphicons-halflings-regular.eot
69
+ ├── glyphicons-halflings-regular.svg
70
+ ├── glyphicons-halflings-regular.ttf
71
+ └── glyphicons-halflings-regular.woff
72
+ ```
73
+
74
+ We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme.
75
+
76
+
77
+
78
+ ## Bugs and feature requests
79
+
80
+ Have a bug or a feature request? [Please open a new issue](https://github.com/twbs/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/).
81
+
82
+ You may use [this JS Bin](http://jsbin.com/aKiCIDO/1/edit) as a template for your bug reports.
83
+
84
+
85
+
86
+ ## Documentation
87
+
88
+ Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.
89
+
90
+ ### Running documentation locally
91
+
92
+ 1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v1.x).
93
+ 2. From the root `/bootstrap` directory, run `jekyll serve` in the command line.
94
+ - **Windows users:** run `chcp 65001` first to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors.
95
+ 3. Open <http://localhost:9001> in your browser, and voilà.
96
+
97
+ Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
98
+
99
+ ### Documentation for previous releases
100
+
101
+ Documentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
102
+
103
+ [Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
104
+
105
+
106
+
107
+ ## Compiling CSS and JavaScript
108
+
109
+ Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands.
110
+
111
+ ### Install Grunt
112
+
113
+ From the command line:
114
+
115
+ 1. Install `grunt-cli` globally with `npm install -g grunt-cli`.
116
+ 2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](package.json) and automatically install the necessary local dependencies listed there.
117
+
118
+ When completed, you'll be able to run the various Grunt commands provided from the command line.
119
+
120
+ **Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding.
121
+
122
+ ### Available Grunt commands
123
+
124
+ #### Build - `grunt`
125
+ Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
126
+
127
+ #### Only compile CSS and JavaScript - `grunt dist`
128
+ `grunt dist` creates the `/dist` directory with compiled files. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
129
+
130
+ #### Tests - `grunt test`
131
+ Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).
132
+
133
+ #### Watch - `grunt watch`
134
+ This is a convenience method for watching just Less files and automatically building them whenever you save.
135
+
136
+ ### Troubleshooting dependencies
137
+
138
+ Should you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`.
139
+
140
+
141
+
142
+ ## Contributing
143
+
144
+ Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
145
+
146
+ More over, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).
147
+
148
+ Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at <http://editorconfig.org>.
149
+
150
+ With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). Please see the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md) for more information.
151
+
152
+
153
+ ## Community
154
+
155
+ Keep track of development and community news.
156
+
157
+ * Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).
158
+ * Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
159
+ * Have a question that's not a feature request or bug report? [Ask on the mailing list.](http://groups.google.com/group/twitter-bootstrap)
160
+ * Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.
161
+
162
+
163
+
164
+
165
+ ## Versioning
166
+
167
+ For transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
168
+
169
+ Releases will be numbered with the following format:
170
+
171
+ `<major>.<minor>.<patch>`
172
+
173
+ And constructed with the following guidelines:
174
+
175
+ * Breaking backward compatibility bumps the major (and resets the minor and patch)
176
+ * New additions without breaking backward compatibility bumps the minor (and resets the patch)
177
+ * Bug fixes and misc changes bumps the patch
178
+
179
+ For more information on SemVer, please visit <http://semver.org/>.
180
+
181
+
182
+
183
+ ## SASS: Developers
184
+
185
+ We have included a Rakefile with convenience methods for working with the SASS Bootstrap library.
186
+
187
+ + **build** - `rake build`
188
+ This will run the less compiler on the bootstrap lib and regenerate the docs dir.
189
+ The lessc compiler is required for this command to run.
190
+
191
+ + **watch** - `rake watch`
192
+ This is a convenience method for watching your Sass files and automatically building them whenever you save.
193
+
194
+
195
+
196
+ ## Authors
197
+
198
+ **Mark Otto**
199
+
200
+ + <http://twitter.com/mdo>
201
+ + <http://github.com/mdo>
202
+
203
+ **Jacob Thornton**
204
+
205
+ + <http://twitter.com/fat>
206
+ + <http://github.com/fat>
207
+
208
+
209
+
210
+ ## SASS: Conversion less to Sass
211
+
212
+ The Twitter Bootstrap was lovingly converted to Sass by:
213
+
214
+ **John W. Long**
215
+
216
+ + http://twitter.com/johnwlong
217
+ + http://github.com/jlong
218
+
219
+ **Jeremy Hinegardner**
220
+
221
+ + http://twitter.com/copiousfreetime
222
+ + http://github.com/copiousfreetime
223
+
224
+ **m5o**
225
+
226
+ + http://twitter.com/m5o
227
+ + http://github.com/m5o
228
+
229
+ **smt**
230
+
231
+ + http://twitter.com/tudorstudio
232
+ + http://github.com/smt
233
+
234
+ And [others](https://github.com/jlong/sass-twitter-bootstrap/contributors)
235
+
236
+
237
+
238
+ ## SASS: Conversion Quick Tips
239
+
240
+ * replace @ with $
241
+ * replace . with @include for mixins
242
+ * replace `spin` with `adjust-hue`
243
+ * add !default to variable definitions
244
+ * replace #gradient > .vertical with @include gradient-vertical
245
+ * replace #grid > .style with @include grid-style
246
+ * use grid-core and grid-fluid mixins instead of #grid > .core and #grid > .fluid
247
+ * use font-shorthand instead of #font > .shorthand
248
+ * replace fadein with fade-in
249
+ * move @import for reset below mixins, because it uses tab-focus mixin in bootstrap.scss
250
+ * explicitly provide .clearfix, .hide-text and .input-block-level for compatibility with LESS output
251
+ * pass grid-* mixin arguments to generators, because otherwise the generator mixins will use the default variables pull transition definition into variable
252
+
253
+
254
+
255
+ ## Sass: Installation via Composer
256
+
257
+ If you already use Composer, the php dependency manager, installing
258
+ sass-twitter-bootstrap is as simple as typing :
259
+ ```shell
260
+ composer.phar require jlong/sass-bootstrap:x.y.z
261
+ ```
262
+ This will install version x.y.z from packagist.org
263
+
264
+ You'll probably want to make sure you get minor updates, like this:
265
+ ```shell
266
+ composer.phar require jlong/sass-bootstrap:~x.y.z
267
+ ```
268
+ or like this:
269
+ ```shell
270
+ composer.phar require jlong/sass-bootstrap:x.y.*
271
+ ```
272
+
273
+
274
+
275
+ ## Copyright and license
276
+
277
+ Copyright 2013 Twitter, Inc under [the Apache 2.0 license](LICENSE).
@@ -0,0 +1,44 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ BOOTSTRAP_CSS = "bootstrap.css"
13
+ BOOTSTRAP_MIN_CSS = "bootstrap.min.css"
14
+ BOOTSTRAP_THEME_CSS = "bootstrap-theme.css"
15
+ BOOTSTRAP_THEME_MIN_CSS = "bootstrap-theme.min.css"
16
+
17
+ SASS_COMMAND = "sass --precision 16 --load-path lib --style"
18
+
19
+ task BOOTSTRAP_CSS do |target|
20
+ sh "#{SASS_COMMAND} expanded lib/bootstrap.scss:dist/css/#{target}"
21
+ end
22
+
23
+ task BOOTSTRAP_MIN_CSS do |target|
24
+ sh "#{SASS_COMMAND} compressed lib/bootstrap.scss:dist/css/#{target}"
25
+ end
26
+
27
+ task BOOTSTRAP_THEME_CSS do |target|
28
+ sh "#{SASS_COMMAND} expanded lib/_theme.scss:dist/css/#{target}"
29
+ end
30
+
31
+ task BOOTSTRAP_THEME_MIN_CSS do |target|
32
+ sh "#{SASS_COMMAND} compressed lib/_theme.scss:dist/css/#{target}"
33
+ end
34
+
35
+
36
+ desc "build regular and compressed versions of bootstrap"
37
+ task :build => [BOOTSTRAP_CSS, BOOTSTRAP_MIN_CSS, BOOTSTRAP_THEME_CSS, BOOTSTRAP_THEME_MIN_CSS]
38
+
39
+ desc "rebuild regular version of bootstrap when modifications are made"
40
+ task :watch do
41
+ sh "#{SASS_COMMAND} expanded --watch lib/bootstrap.scss:dist/css/#{BOOTSTRAP_CSS}"
42
+ end
43
+
44
+ task :default => :build
@@ -0,0 +1,25 @@
1
+ # Dependencies
2
+ markdown: rdiscount
3
+ pygments: true
4
+
5
+ # Permalinks
6
+ permalink: pretty
7
+
8
+ # Server
9
+ destination: ./_gh_pages
10
+ exclude: [".editorconfig", ".gitignore", "bower.json", "composer.json", "CONTRIBUTING.md", "CNAME", "LICENSE", "Gruntfile.js", "package.json", "node_modules", "README.md", "less"]
11
+ port: 9001
12
+
13
+ # Custom vars
14
+ current_version: 3.0.2
15
+ repo: https://github.com/twbs/bootstrap
16
+
17
+ download_source: https://github.com/twbs/bootstrap/archive/v3.0.2.zip
18
+ download_dist: https://github.com/twbs/bootstrap/releases/download/v3.0.2/bootstrap-3.0.2-dist.zip
19
+
20
+ blog: http://blog.getbootstrap.com
21
+ expo: http://expo.getbootstrap.com
22
+
23
+ cdn_css: //netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css
24
+ cdn_theme_css: //netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap-theme.min.css
25
+ cdn_js: //netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js
@@ -0,0 +1 @@
1
+ <div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script>var z = document.createElement("script"); z.async = true; z.src = "http://engine.carbonads.com/z/32341/azcarbon_2_1_0_HORIZ"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
@@ -0,0 +1,34 @@
1
+ <!-- Bootstrap core JavaScript
2
+ ================================================== -->
3
+ <!-- Placed at the end of the document so the pages load faster -->
4
+ <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
5
+ <script src="{{ page.base_url }}dist/js/bootstrap.js"></script>
6
+
7
+ <script src="http://platform.twitter.com/widgets.js"></script>
8
+ <script src="{{ page.base_url }}docs-assets/js/holder.js"></script>
9
+
10
+ <script src="{{ page.base_url }}docs-assets/js/application.js"></script>
11
+
12
+ {% if page.slug == "customize" %}
13
+ <script src="{{ page.base_url }}docs-assets/js/less.js"></script>
14
+ <script src="{{ page.base_url }}docs-assets/js/jszip.js"></script>
15
+ <script src="{{ page.base_url }}docs-assets/js/uglify.js"></script>
16
+ <script src="{{ page.base_url }}docs-assets/js/filesaver.js"></script>
17
+ <script src="{{ page.base_url }}docs-assets/js/raw-files.js"></script>
18
+ <script src="{{ page.base_url }}docs-assets/js/customizer.js"></script>
19
+ {% endif %}
20
+
21
+ <!-- Analytics
22
+ ================================================== -->
23
+ <script>
24
+ var _gauges = _gauges || [];
25
+ (function() {
26
+ var t = document.createElement('script');
27
+ t.async = true;
28
+ t.id = 'gauges-tracker';
29
+ t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');
30
+ t.src = '//secure.gaug.es/track.js';
31
+ var s = document.getElementsByTagName('script')[0];
32
+ s.parentNode.insertBefore(t, s);
33
+ })();
34
+ </script>
@@ -0,0 +1,42 @@
1
+ <meta charset="utf-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta name="description" content="">
5
+ <meta name="author" content="">
6
+
7
+ <title>
8
+ {% if page.title == "Bootstrap" %}
9
+ {{ page.title }}
10
+ {% else %}
11
+ {{ page.title }} &middot; Bootstrap
12
+ {% endif %}
13
+ </title>
14
+
15
+ <!-- Bootstrap core CSS -->
16
+ <link href="{{ page.base_url }}dist/css/bootstrap.min.css" rel="stylesheet">
17
+
18
+ <!-- Documentation extras -->
19
+ <link href="{{ page.base_url }}docs-assets/css/docs.css" rel="stylesheet">
20
+ <link href="{{ page.base_url }}docs-assets/css/pygments-manni.css" rel="stylesheet">
21
+ <!--[if lt IE 9]><script src="{{ page.base_url }}docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
22
+
23
+ <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
24
+ <!--[if lt IE 9]>
25
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
26
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
27
+ <![endif]-->
28
+
29
+ <!-- Favicons -->
30
+ <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ page.base_url }}docs-assets/ico/apple-touch-icon-144-precomposed.png">
31
+ <link rel="shortcut icon" href="{{ page.base_url }}docs-assets/ico/favicon.png">
32
+
33
+ <script>
34
+ var _gaq = _gaq || [];
35
+ _gaq.push(['_setAccount', 'UA-146052-10']);
36
+ _gaq.push(['_trackPageview']);
37
+ (function() {
38
+ var ga = document.createElement('script'); ga.async = true;
39
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
40
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
41
+ })();
42
+ </script>
@@ -0,0 +1,12 @@
1
+ <li>
2
+ <a href="#history">History</a>
3
+ </li>
4
+ <li>
5
+ <a href="#team">Core team</a>
6
+ </li>
7
+ <li>
8
+ <a href="#community">Community</a>
9
+ </li>
10
+ <li>
11
+ <a href="#translations">Translations</a>
12
+ </li>