convert_theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (413) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +412 -0
  3. data/PostInstall.txt +7 -0
  4. data/README.rdoc +47 -0
  5. data/Rakefile +23 -0
  6. data/bin/convert_theme +10 -0
  7. data/lib/convert_theme.rb +121 -0
  8. data/lib/convert_theme/cli.rb +31 -0
  9. data/script/console +10 -0
  10. data/script/destroy +14 -0
  11. data/script/generate +14 -0
  12. data/spec/convert_theme_cli_spec.rb +24 -0
  13. data/spec/convert_theme_spec.rb +76 -0
  14. data/spec/expected/rails/README.md +1 -0
  15. data/spec/expected/rails/base_app/README +243 -0
  16. data/spec/expected/rails/base_app/Rakefile +10 -0
  17. data/spec/expected/rails/base_app/app/controllers/application_controller.rb +10 -0
  18. data/spec/expected/rails/base_app/app/helpers/application_helper.rb +3 -0
  19. data/spec/expected/rails/base_app/config/boot.rb +110 -0
  20. data/spec/expected/rails/base_app/config/database.yml +22 -0
  21. data/spec/expected/rails/base_app/config/environment.rb +41 -0
  22. data/spec/expected/rails/base_app/config/environments/development.rb +17 -0
  23. data/spec/expected/rails/base_app/config/environments/production.rb +28 -0
  24. data/spec/expected/rails/base_app/config/environments/test.rb +28 -0
  25. data/spec/expected/rails/base_app/config/initializers/backtrace_silencers.rb +7 -0
  26. data/spec/expected/rails/base_app/config/initializers/inflections.rb +10 -0
  27. data/spec/expected/rails/base_app/config/initializers/mime_types.rb +5 -0
  28. data/spec/expected/rails/base_app/config/initializers/new_rails_defaults.rb +21 -0
  29. data/spec/expected/rails/base_app/config/initializers/session_store.rb +15 -0
  30. data/spec/expected/rails/base_app/config/locales/en.yml +5 -0
  31. data/spec/expected/rails/base_app/config/routes.rb +43 -0
  32. data/spec/expected/rails/base_app/db/seeds.rb +7 -0
  33. data/spec/expected/rails/base_app/doc/README_FOR_APP +2 -0
  34. data/spec/expected/rails/base_app/public/404.html +30 -0
  35. data/spec/expected/rails/base_app/public/422.html +30 -0
  36. data/spec/expected/rails/base_app/public/500.html +30 -0
  37. data/spec/expected/rails/base_app/public/favicon.ico +0 -0
  38. data/spec/expected/rails/base_app/public/images/rails.png +0 -0
  39. data/spec/expected/rails/base_app/public/index.html +275 -0
  40. data/spec/expected/rails/base_app/public/javascripts/application.js +2 -0
  41. data/spec/expected/rails/base_app/public/javascripts/controls.js +963 -0
  42. data/spec/expected/rails/base_app/public/javascripts/dragdrop.js +973 -0
  43. data/spec/expected/rails/base_app/public/javascripts/effects.js +1128 -0
  44. data/spec/expected/rails/base_app/public/javascripts/prototype.js +4320 -0
  45. data/spec/expected/rails/base_app/public/robots.txt +5 -0
  46. data/spec/expected/rails/base_app/script/about +4 -0
  47. data/spec/expected/rails/base_app/script/console +3 -0
  48. data/spec/expected/rails/base_app/script/dbconsole +3 -0
  49. data/spec/expected/rails/base_app/script/destroy +3 -0
  50. data/spec/expected/rails/base_app/script/generate +3 -0
  51. data/spec/expected/rails/base_app/script/performance/benchmarker +3 -0
  52. data/spec/expected/rails/base_app/script/performance/profiler +3 -0
  53. data/spec/expected/rails/base_app/script/plugin +3 -0
  54. data/spec/expected/rails/base_app/script/runner +3 -0
  55. data/spec/expected/rails/base_app/script/server +3 -0
  56. data/spec/expected/rails/base_app/test/performance/browsing_test.rb +9 -0
  57. data/spec/expected/rails/base_app/test/test_helper.rb +38 -0
  58. data/spec/expected/rails/bloganje/README +243 -0
  59. data/spec/expected/rails/bloganje/Rakefile +10 -0
  60. data/spec/expected/rails/bloganje/app/controllers/application_controller.rb +10 -0
  61. data/spec/expected/rails/bloganje/app/helpers/application_helper.rb +3 -0
  62. data/spec/expected/rails/bloganje/app/views/layouts/application.html.erb +98 -0
  63. data/spec/expected/rails/bloganje/config/boot.rb +110 -0
  64. data/spec/expected/rails/bloganje/config/database.yml +22 -0
  65. data/spec/expected/rails/bloganje/config/environment.rb +41 -0
  66. data/spec/expected/rails/bloganje/config/environments/development.rb +17 -0
  67. data/spec/expected/rails/bloganje/config/environments/production.rb +28 -0
  68. data/spec/expected/rails/bloganje/config/environments/test.rb +28 -0
  69. data/spec/expected/rails/bloganje/config/initializers/backtrace_silencers.rb +7 -0
  70. data/spec/expected/rails/bloganje/config/initializers/inflections.rb +10 -0
  71. data/spec/expected/rails/bloganje/config/initializers/mime_types.rb +5 -0
  72. data/spec/expected/rails/bloganje/config/initializers/new_rails_defaults.rb +21 -0
  73. data/spec/expected/rails/bloganje/config/initializers/session_store.rb +15 -0
  74. data/spec/expected/rails/bloganje/config/locales/en.yml +5 -0
  75. data/spec/expected/rails/bloganje/config/routes.rb +43 -0
  76. data/spec/expected/rails/bloganje/db/seeds.rb +7 -0
  77. data/spec/expected/rails/bloganje/doc/README_FOR_APP +2 -0
  78. data/spec/expected/rails/bloganje/public/404.html +30 -0
  79. data/spec/expected/rails/bloganje/public/422.html +30 -0
  80. data/spec/expected/rails/bloganje/public/500.html +30 -0
  81. data/spec/expected/rails/bloganje/public/favicon.ico +0 -0
  82. data/spec/expected/rails/bloganje/public/images/Thumbs.db +0 -0
  83. data/spec/expected/rails/bloganje/public/images/bg.jpg +0 -0
  84. data/spec/expected/rails/bloganje/public/images/bg_blue.jpg +0 -0
  85. data/spec/expected/rails/bloganje/public/images/bg_brown.jpg +0 -0
  86. data/spec/expected/rails/bloganje/public/images/bg_light_green.jpg +0 -0
  87. data/spec/expected/rails/bloganje/public/images/bg_menu_blue.jpg +0 -0
  88. data/spec/expected/rails/bloganje/public/images/bg_menu_green.jpg +0 -0
  89. data/spec/expected/rails/bloganje/public/images/bg_menu_mix.jpg +0 -0
  90. data/spec/expected/rails/bloganje/public/images/bg_menu_red.jpg +0 -0
  91. data/spec/expected/rails/bloganje/public/images/bg_mix.jpg +0 -0
  92. data/spec/expected/rails/bloganje/public/images/form_blue.gif +0 -0
  93. data/spec/expected/rails/bloganje/public/images/form_brown.gif +0 -0
  94. data/spec/expected/rails/bloganje/public/images/form_green.gif +0 -0
  95. data/spec/expected/rails/bloganje/public/images/form_mix.gif +0 -0
  96. data/spec/expected/rails/bloganje/public/images/form_red.gif +0 -0
  97. data/spec/expected/rails/bloganje/public/images/graph.jpg +0 -0
  98. data/spec/expected/rails/bloganje/public/images/graph2.jpg +0 -0
  99. data/spec/expected/rails/bloganje/public/images/icons/Thumbs.db +0 -0
  100. data/spec/expected/rails/bloganje/public/images/icons/add.png +0 -0
  101. data/spec/expected/rails/bloganje/public/images/icons/application_add.png +0 -0
  102. data/spec/expected/rails/bloganje/public/images/icons/arrow_down.png +0 -0
  103. data/spec/expected/rails/bloganje/public/images/icons/arrow_down_mini.gif +0 -0
  104. data/spec/expected/rails/bloganje/public/images/icons/arrow_left.gif +0 -0
  105. data/spec/expected/rails/bloganje/public/images/icons/arrow_right.gif +0 -0
  106. data/spec/expected/rails/bloganje/public/images/icons/brick.png +0 -0
  107. data/spec/expected/rails/bloganje/public/images/icons/brick_edit.png +0 -0
  108. data/spec/expected/rails/bloganje/public/images/icons/bricks.png +0 -0
  109. data/spec/expected/rails/bloganje/public/images/icons/bricks_gear.png +0 -0
  110. data/spec/expected/rails/bloganje/public/images/icons/car.png +0 -0
  111. data/spec/expected/rails/bloganje/public/images/icons/cart.png +0 -0
  112. data/spec/expected/rails/bloganje/public/images/icons/cart_add.png +0 -0
  113. data/spec/expected/rails/bloganje/public/images/icons/cog.png +0 -0
  114. data/spec/expected/rails/bloganje/public/images/icons/coins.png +0 -0
  115. data/spec/expected/rails/bloganje/public/images/icons/color_swatch.png +0 -0
  116. data/spec/expected/rails/bloganje/public/images/icons/expand.jpg +0 -0
  117. data/spec/expected/rails/bloganje/public/images/icons/feed.png +0 -0
  118. data/spec/expected/rails/bloganje/public/images/icons/folder.png +0 -0
  119. data/spec/expected/rails/bloganje/public/images/icons/folder_page.png +0 -0
  120. data/spec/expected/rails/bloganje/public/images/icons/folder_page_add.png +0 -0
  121. data/spec/expected/rails/bloganje/public/images/icons/folder_table.png +0 -0
  122. data/spec/expected/rails/bloganje/public/images/icons/group.png +0 -0
  123. data/spec/expected/rails/bloganje/public/images/icons/house.png +0 -0
  124. data/spec/expected/rails/bloganje/public/images/icons/magnifier.png +0 -0
  125. data/spec/expected/rails/bloganje/public/images/icons/page_add.png +0 -0
  126. data/spec/expected/rails/bloganje/public/images/icons/page_gear.png +0 -0
  127. data/spec/expected/rails/bloganje/public/images/icons/page_white_delete.png +0 -0
  128. data/spec/expected/rails/bloganje/public/images/icons/page_white_edit.png +0 -0
  129. data/spec/expected/rails/bloganje/public/images/icons/page_white_link.png +0 -0
  130. data/spec/expected/rails/bloganje/public/images/icons/page_white_text_width.png +0 -0
  131. data/spec/expected/rails/bloganje/public/images/icons/report.png +0 -0
  132. data/spec/expected/rails/bloganje/public/images/icons/report_link.png +0 -0
  133. data/spec/expected/rails/bloganje/public/images/icons/rss.png +0 -0
  134. data/spec/expected/rails/bloganje/public/images/icons/user.png +0 -0
  135. data/spec/expected/rails/bloganje/public/images/icons/user_add.png +0 -0
  136. data/spec/expected/rails/bloganje/public/images/icons/user_delete.png +0 -0
  137. data/spec/expected/rails/bloganje/public/images/icons/user_edit.png +0 -0
  138. data/spec/expected/rails/bloganje/public/images/icons/world.png +0 -0
  139. data/spec/expected/rails/bloganje/public/images/rails.png +0 -0
  140. data/spec/expected/rails/bloganje/public/index.html +275 -0
  141. data/spec/expected/rails/bloganje/public/javascripts/application.js +2 -0
  142. data/spec/expected/rails/bloganje/public/javascripts/controls.js +963 -0
  143. data/spec/expected/rails/bloganje/public/javascripts/dragdrop.js +973 -0
  144. data/spec/expected/rails/bloganje/public/javascripts/effects.js +1128 -0
  145. data/spec/expected/rails/bloganje/public/javascripts/prototype.js +4320 -0
  146. data/spec/expected/rails/bloganje/public/robots.txt +5 -0
  147. data/spec/expected/rails/bloganje/public/stylesheets/Copy of theme.css +121 -0
  148. data/spec/expected/rails/bloganje/public/stylesheets/ie-sucks.css +21 -0
  149. data/spec/expected/rails/bloganje/public/stylesheets/iepngfix.htc +68 -0
  150. data/spec/expected/rails/bloganje/public/stylesheets/style.css +379 -0
  151. data/spec/expected/rails/bloganje/public/stylesheets/switch.css +51 -0
  152. data/spec/expected/rails/bloganje/public/stylesheets/theme.css +121 -0
  153. data/spec/expected/rails/bloganje/public/stylesheets/theme1.css +121 -0
  154. data/spec/expected/rails/bloganje/public/stylesheets/theme2.css +121 -0
  155. data/spec/expected/rails/bloganje/public/stylesheets/theme3.css +121 -0
  156. data/spec/expected/rails/bloganje/public/stylesheets/theme4.css +122 -0
  157. data/spec/expected/rails/bloganje/script/about +4 -0
  158. data/spec/expected/rails/bloganje/script/console +3 -0
  159. data/spec/expected/rails/bloganje/script/dbconsole +3 -0
  160. data/spec/expected/rails/bloganje/script/destroy +3 -0
  161. data/spec/expected/rails/bloganje/script/generate +3 -0
  162. data/spec/expected/rails/bloganje/script/performance/benchmarker +3 -0
  163. data/spec/expected/rails/bloganje/script/performance/profiler +3 -0
  164. data/spec/expected/rails/bloganje/script/plugin +3 -0
  165. data/spec/expected/rails/bloganje/script/runner +3 -0
  166. data/spec/expected/rails/bloganje/script/server +3 -0
  167. data/spec/expected/rails/bloganje/test/performance/browsing_test.rb +9 -0
  168. data/spec/expected/rails/bloganje/test/test_helper.rb +38 -0
  169. data/spec/expected/rails/webresourcedepot/README +243 -0
  170. data/spec/expected/rails/webresourcedepot/Rakefile +10 -0
  171. data/spec/expected/rails/webresourcedepot/app/controllers/application_controller.rb +10 -0
  172. data/spec/expected/rails/webresourcedepot/app/helpers/application_helper.rb +3 -0
  173. data/spec/expected/rails/webresourcedepot/app/views/layouts/application.html.erb +47 -0
  174. data/spec/expected/rails/webresourcedepot/config/boot.rb +110 -0
  175. data/spec/expected/rails/webresourcedepot/config/database.yml +22 -0
  176. data/spec/expected/rails/webresourcedepot/config/environment.rb +41 -0
  177. data/spec/expected/rails/webresourcedepot/config/environments/development.rb +17 -0
  178. data/spec/expected/rails/webresourcedepot/config/environments/production.rb +28 -0
  179. data/spec/expected/rails/webresourcedepot/config/environments/test.rb +28 -0
  180. data/spec/expected/rails/webresourcedepot/config/initializers/backtrace_silencers.rb +7 -0
  181. data/spec/expected/rails/webresourcedepot/config/initializers/inflections.rb +10 -0
  182. data/spec/expected/rails/webresourcedepot/config/initializers/mime_types.rb +5 -0
  183. data/spec/expected/rails/webresourcedepot/config/initializers/new_rails_defaults.rb +21 -0
  184. data/spec/expected/rails/webresourcedepot/config/initializers/session_store.rb +15 -0
  185. data/spec/expected/rails/webresourcedepot/config/locales/en.yml +5 -0
  186. data/spec/expected/rails/webresourcedepot/config/routes.rb +43 -0
  187. data/spec/expected/rails/webresourcedepot/db/seeds.rb +7 -0
  188. data/spec/expected/rails/webresourcedepot/doc/README_FOR_APP +2 -0
  189. data/spec/expected/rails/webresourcedepot/public/404.html +30 -0
  190. data/spec/expected/rails/webresourcedepot/public/422.html +30 -0
  191. data/spec/expected/rails/webresourcedepot/public/500.html +30 -0
  192. data/spec/expected/rails/webresourcedepot/public/favicon.ico +0 -0
  193. data/spec/expected/rails/webresourcedepot/public/images/Thumbs.db +0 -0
  194. data/spec/expected/rails/webresourcedepot/public/images/add-icon.gif +0 -0
  195. data/spec/expected/rails/webresourcedepot/public/images/arrow.gif +0 -0
  196. data/spec/expected/rails/webresourcedepot/public/images/bg-center-column.jpg +0 -0
  197. data/spec/expected/rails/webresourcedepot/public/images/bg-dotted.gif +0 -0
  198. data/spec/expected/rails/webresourcedepot/public/images/bg-footer.gif +0 -0
  199. data/spec/expected/rails/webresourcedepot/public/images/bg-header.gif +0 -0
  200. data/spec/expected/rails/webresourcedepot/public/images/bg-left-header.gif +0 -0
  201. data/spec/expected/rails/webresourcedepot/public/images/bg-left-link.gif +0 -0
  202. data/spec/expected/rails/webresourcedepot/public/images/bg-middle.gif +0 -0
  203. data/spec/expected/rails/webresourcedepot/public/images/bg-orange-button.gif +0 -0
  204. data/spec/expected/rails/webresourcedepot/public/images/bg-select.gif +0 -0
  205. data/spec/expected/rails/webresourcedepot/public/images/bg-th-left.gif +0 -0
  206. data/spec/expected/rails/webresourcedepot/public/images/bg-th-right.gif +0 -0
  207. data/spec/expected/rails/webresourcedepot/public/images/edit-icon.gif +0 -0
  208. data/spec/expected/rails/webresourcedepot/public/images/hr.gif +0 -0
  209. data/spec/expected/rails/webresourcedepot/public/images/login-icon.gif +0 -0
  210. data/spec/expected/rails/webresourcedepot/public/images/logo.gif +0 -0
  211. data/spec/expected/rails/webresourcedepot/public/images/rails.png +0 -0
  212. data/spec/expected/rails/webresourcedepot/public/images/save-icon.gif +0 -0
  213. data/spec/expected/rails/webresourcedepot/public/images/tab-active-left.gif +0 -0
  214. data/spec/expected/rails/webresourcedepot/public/images/tab-active-right.gif +0 -0
  215. data/spec/expected/rails/webresourcedepot/public/images/tab-active.gif +0 -0
  216. data/spec/expected/rails/webresourcedepot/public/images/tab-left.gif +0 -0
  217. data/spec/expected/rails/webresourcedepot/public/images/tab-right.gif +0 -0
  218. data/spec/expected/rails/webresourcedepot/public/images/tab.gif +0 -0
  219. data/spec/expected/rails/webresourcedepot/public/index.html +275 -0
  220. data/spec/expected/rails/webresourcedepot/public/javascripts/application.js +2 -0
  221. data/spec/expected/rails/webresourcedepot/public/javascripts/controls.js +963 -0
  222. data/spec/expected/rails/webresourcedepot/public/javascripts/dragdrop.js +973 -0
  223. data/spec/expected/rails/webresourcedepot/public/javascripts/effects.js +1128 -0
  224. data/spec/expected/rails/webresourcedepot/public/javascripts/prototype.js +4320 -0
  225. data/spec/expected/rails/webresourcedepot/public/robots.txt +5 -0
  226. data/spec/expected/rails/webresourcedepot/public/stylesheets/all.css +334 -0
  227. data/spec/expected/rails/webresourcedepot/script/about +4 -0
  228. data/spec/expected/rails/webresourcedepot/script/console +3 -0
  229. data/spec/expected/rails/webresourcedepot/script/dbconsole +3 -0
  230. data/spec/expected/rails/webresourcedepot/script/destroy +3 -0
  231. data/spec/expected/rails/webresourcedepot/script/generate +3 -0
  232. data/spec/expected/rails/webresourcedepot/script/performance/benchmarker +3 -0
  233. data/spec/expected/rails/webresourcedepot/script/performance/profiler +3 -0
  234. data/spec/expected/rails/webresourcedepot/script/plugin +3 -0
  235. data/spec/expected/rails/webresourcedepot/script/runner +3 -0
  236. data/spec/expected/rails/webresourcedepot/script/server +3 -0
  237. data/spec/expected/rails/webresourcedepot/test/performance/browsing_test.rb +9 -0
  238. data/spec/expected/rails/webresourcedepot/test/test_helper.rb +38 -0
  239. data/spec/fixtures/bloganje/README.md +1 -0
  240. data/spec/fixtures/bloganje/blank.html +100 -0
  241. data/spec/fixtures/bloganje/css/Copy of theme.css +121 -0
  242. data/spec/fixtures/bloganje/css/ie-sucks.css +21 -0
  243. data/spec/fixtures/bloganje/css/iepngfix.htc +68 -0
  244. data/spec/fixtures/bloganje/css/style.css +379 -0
  245. data/spec/fixtures/bloganje/css/switch.css +51 -0
  246. data/spec/fixtures/bloganje/css/theme.css +121 -0
  247. data/spec/fixtures/bloganje/css/theme1.css +121 -0
  248. data/spec/fixtures/bloganje/css/theme2.css +121 -0
  249. data/spec/fixtures/bloganje/css/theme3.css +121 -0
  250. data/spec/fixtures/bloganje/css/theme4.css +122 -0
  251. data/spec/fixtures/bloganje/img/Thumbs.db +0 -0
  252. data/spec/fixtures/bloganje/img/bg.jpg +0 -0
  253. data/spec/fixtures/bloganje/img/bg_blue.jpg +0 -0
  254. data/spec/fixtures/bloganje/img/bg_brown.jpg +0 -0
  255. data/spec/fixtures/bloganje/img/bg_light_green.jpg +0 -0
  256. data/spec/fixtures/bloganje/img/bg_menu_blue.jpg +0 -0
  257. data/spec/fixtures/bloganje/img/bg_menu_green.jpg +0 -0
  258. data/spec/fixtures/bloganje/img/bg_menu_mix.jpg +0 -0
  259. data/spec/fixtures/bloganje/img/bg_menu_red.jpg +0 -0
  260. data/spec/fixtures/bloganje/img/bg_mix.jpg +0 -0
  261. data/spec/fixtures/bloganje/img/form_blue.gif +0 -0
  262. data/spec/fixtures/bloganje/img/form_brown.gif +0 -0
  263. data/spec/fixtures/bloganje/img/form_green.gif +0 -0
  264. data/spec/fixtures/bloganje/img/form_mix.gif +0 -0
  265. data/spec/fixtures/bloganje/img/form_red.gif +0 -0
  266. data/spec/fixtures/bloganje/img/graph.jpg +0 -0
  267. data/spec/fixtures/bloganje/img/graph2.jpg +0 -0
  268. data/spec/fixtures/bloganje/img/icons/Thumbs.db +0 -0
  269. data/spec/fixtures/bloganje/img/icons/add.png +0 -0
  270. data/spec/fixtures/bloganje/img/icons/application_add.png +0 -0
  271. data/spec/fixtures/bloganje/img/icons/arrow_down.png +0 -0
  272. data/spec/fixtures/bloganje/img/icons/arrow_down_mini.gif +0 -0
  273. data/spec/fixtures/bloganje/img/icons/arrow_left.gif +0 -0
  274. data/spec/fixtures/bloganje/img/icons/arrow_right.gif +0 -0
  275. data/spec/fixtures/bloganje/img/icons/brick.png +0 -0
  276. data/spec/fixtures/bloganje/img/icons/brick_edit.png +0 -0
  277. data/spec/fixtures/bloganje/img/icons/bricks.png +0 -0
  278. data/spec/fixtures/bloganje/img/icons/bricks_gear.png +0 -0
  279. data/spec/fixtures/bloganje/img/icons/car.png +0 -0
  280. data/spec/fixtures/bloganje/img/icons/cart.png +0 -0
  281. data/spec/fixtures/bloganje/img/icons/cart_add.png +0 -0
  282. data/spec/fixtures/bloganje/img/icons/cog.png +0 -0
  283. data/spec/fixtures/bloganje/img/icons/coins.png +0 -0
  284. data/spec/fixtures/bloganje/img/icons/color_swatch.png +0 -0
  285. data/spec/fixtures/bloganje/img/icons/expand.jpg +0 -0
  286. data/spec/fixtures/bloganje/img/icons/feed.png +0 -0
  287. data/spec/fixtures/bloganje/img/icons/folder.png +0 -0
  288. data/spec/fixtures/bloganje/img/icons/folder_page.png +0 -0
  289. data/spec/fixtures/bloganje/img/icons/folder_page_add.png +0 -0
  290. data/spec/fixtures/bloganje/img/icons/folder_table.png +0 -0
  291. data/spec/fixtures/bloganje/img/icons/group.png +0 -0
  292. data/spec/fixtures/bloganje/img/icons/house.png +0 -0
  293. data/spec/fixtures/bloganje/img/icons/magnifier.png +0 -0
  294. data/spec/fixtures/bloganje/img/icons/page_add.png +0 -0
  295. data/spec/fixtures/bloganje/img/icons/page_gear.png +0 -0
  296. data/spec/fixtures/bloganje/img/icons/page_white_delete.png +0 -0
  297. data/spec/fixtures/bloganje/img/icons/page_white_edit.png +0 -0
  298. data/spec/fixtures/bloganje/img/icons/page_white_link.png +0 -0
  299. data/spec/fixtures/bloganje/img/icons/page_white_text_width.png +0 -0
  300. data/spec/fixtures/bloganje/img/icons/report.png +0 -0
  301. data/spec/fixtures/bloganje/img/icons/report_link.png +0 -0
  302. data/spec/fixtures/bloganje/img/icons/rss.png +0 -0
  303. data/spec/fixtures/bloganje/img/icons/user.png +0 -0
  304. data/spec/fixtures/bloganje/img/icons/user_add.png +0 -0
  305. data/spec/fixtures/bloganje/img/icons/user_delete.png +0 -0
  306. data/spec/fixtures/bloganje/img/icons/user_edit.png +0 -0
  307. data/spec/fixtures/bloganje/img/icons/world.png +0 -0
  308. data/spec/fixtures/bloganje/index.html +281 -0
  309. data/spec/fixtures/bloganje/psd/template.psd +0 -0
  310. data/spec/fixtures/bloganje/users.html +309 -0
  311. data/spec/fixtures/webresourcedepot/README.md +1 -0
  312. data/spec/fixtures/webresourcedepot/css/all.css +334 -0
  313. data/spec/fixtures/webresourcedepot/img/Thumbs.db +0 -0
  314. data/spec/fixtures/webresourcedepot/img/add-icon.gif +0 -0
  315. data/spec/fixtures/webresourcedepot/img/arrow.gif +0 -0
  316. data/spec/fixtures/webresourcedepot/img/bg-center-column.jpg +0 -0
  317. data/spec/fixtures/webresourcedepot/img/bg-dotted.gif +0 -0
  318. data/spec/fixtures/webresourcedepot/img/bg-footer.gif +0 -0
  319. data/spec/fixtures/webresourcedepot/img/bg-header.gif +0 -0
  320. data/spec/fixtures/webresourcedepot/img/bg-left-header.gif +0 -0
  321. data/spec/fixtures/webresourcedepot/img/bg-left-link.gif +0 -0
  322. data/spec/fixtures/webresourcedepot/img/bg-middle.gif +0 -0
  323. data/spec/fixtures/webresourcedepot/img/bg-orange-button.gif +0 -0
  324. data/spec/fixtures/webresourcedepot/img/bg-select.gif +0 -0
  325. data/spec/fixtures/webresourcedepot/img/bg-th-left.gif +0 -0
  326. data/spec/fixtures/webresourcedepot/img/bg-th-right.gif +0 -0
  327. data/spec/fixtures/webresourcedepot/img/edit-icon.gif +0 -0
  328. data/spec/fixtures/webresourcedepot/img/hr.gif +0 -0
  329. data/spec/fixtures/webresourcedepot/img/login-icon.gif +0 -0
  330. data/spec/fixtures/webresourcedepot/img/logo.gif +0 -0
  331. data/spec/fixtures/webresourcedepot/img/save-icon.gif +0 -0
  332. data/spec/fixtures/webresourcedepot/img/tab-active-left.gif +0 -0
  333. data/spec/fixtures/webresourcedepot/img/tab-active-right.gif +0 -0
  334. data/spec/fixtures/webresourcedepot/img/tab-active.gif +0 -0
  335. data/spec/fixtures/webresourcedepot/img/tab-left.gif +0 -0
  336. data/spec/fixtures/webresourcedepot/img/tab-right.gif +0 -0
  337. data/spec/fixtures/webresourcedepot/img/tab.gif +0 -0
  338. data/spec/fixtures/webresourcedepot/index.html +179 -0
  339. data/spec/matchers/have_same_contents_as.rb +18 -0
  340. data/spec/spec.opts +1 -0
  341. data/spec/spec_helper.rb +39 -0
  342. data/spec/tmp/my_app/README +243 -0
  343. data/spec/tmp/my_app/Rakefile +10 -0
  344. data/spec/tmp/my_app/app/controllers/application_controller.rb +10 -0
  345. data/spec/tmp/my_app/app/helpers/application_helper.rb +3 -0
  346. data/spec/tmp/my_app/app/views/layouts/application.html.erb +47 -0
  347. data/spec/tmp/my_app/config/boot.rb +110 -0
  348. data/spec/tmp/my_app/config/database.yml +22 -0
  349. data/spec/tmp/my_app/config/environment.rb +41 -0
  350. data/spec/tmp/my_app/config/environments/development.rb +17 -0
  351. data/spec/tmp/my_app/config/environments/production.rb +28 -0
  352. data/spec/tmp/my_app/config/environments/test.rb +28 -0
  353. data/spec/tmp/my_app/config/initializers/backtrace_silencers.rb +7 -0
  354. data/spec/tmp/my_app/config/initializers/inflections.rb +10 -0
  355. data/spec/tmp/my_app/config/initializers/mime_types.rb +5 -0
  356. data/spec/tmp/my_app/config/initializers/new_rails_defaults.rb +21 -0
  357. data/spec/tmp/my_app/config/initializers/session_store.rb +15 -0
  358. data/spec/tmp/my_app/config/locales/en.yml +5 -0
  359. data/spec/tmp/my_app/config/routes.rb +43 -0
  360. data/spec/tmp/my_app/db/seeds.rb +7 -0
  361. data/spec/tmp/my_app/doc/README_FOR_APP +2 -0
  362. data/spec/tmp/my_app/public/404.html +30 -0
  363. data/spec/tmp/my_app/public/422.html +30 -0
  364. data/spec/tmp/my_app/public/500.html +30 -0
  365. data/spec/tmp/my_app/public/favicon.ico +0 -0
  366. data/spec/tmp/my_app/public/images/Thumbs.db +0 -0
  367. data/spec/tmp/my_app/public/images/add-icon.gif +0 -0
  368. data/spec/tmp/my_app/public/images/arrow.gif +0 -0
  369. data/spec/tmp/my_app/public/images/bg-center-column.jpg +0 -0
  370. data/spec/tmp/my_app/public/images/bg-dotted.gif +0 -0
  371. data/spec/tmp/my_app/public/images/bg-footer.gif +0 -0
  372. data/spec/tmp/my_app/public/images/bg-header.gif +0 -0
  373. data/spec/tmp/my_app/public/images/bg-left-header.gif +0 -0
  374. data/spec/tmp/my_app/public/images/bg-left-link.gif +0 -0
  375. data/spec/tmp/my_app/public/images/bg-middle.gif +0 -0
  376. data/spec/tmp/my_app/public/images/bg-orange-button.gif +0 -0
  377. data/spec/tmp/my_app/public/images/bg-select.gif +0 -0
  378. data/spec/tmp/my_app/public/images/bg-th-left.gif +0 -0
  379. data/spec/tmp/my_app/public/images/bg-th-right.gif +0 -0
  380. data/spec/tmp/my_app/public/images/edit-icon.gif +0 -0
  381. data/spec/tmp/my_app/public/images/hr.gif +0 -0
  382. data/spec/tmp/my_app/public/images/login-icon.gif +0 -0
  383. data/spec/tmp/my_app/public/images/logo.gif +0 -0
  384. data/spec/tmp/my_app/public/images/rails.png +0 -0
  385. data/spec/tmp/my_app/public/images/save-icon.gif +0 -0
  386. data/spec/tmp/my_app/public/images/tab-active-left.gif +0 -0
  387. data/spec/tmp/my_app/public/images/tab-active-right.gif +0 -0
  388. data/spec/tmp/my_app/public/images/tab-active.gif +0 -0
  389. data/spec/tmp/my_app/public/images/tab-left.gif +0 -0
  390. data/spec/tmp/my_app/public/images/tab-right.gif +0 -0
  391. data/spec/tmp/my_app/public/images/tab.gif +0 -0
  392. data/spec/tmp/my_app/public/index.html +275 -0
  393. data/spec/tmp/my_app/public/javascripts/application.js +2 -0
  394. data/spec/tmp/my_app/public/javascripts/controls.js +963 -0
  395. data/spec/tmp/my_app/public/javascripts/dragdrop.js +973 -0
  396. data/spec/tmp/my_app/public/javascripts/effects.js +1128 -0
  397. data/spec/tmp/my_app/public/javascripts/prototype.js +4320 -0
  398. data/spec/tmp/my_app/public/robots.txt +5 -0
  399. data/spec/tmp/my_app/public/stylesheets/all.css +334 -0
  400. data/spec/tmp/my_app/script/about +4 -0
  401. data/spec/tmp/my_app/script/console +3 -0
  402. data/spec/tmp/my_app/script/dbconsole +3 -0
  403. data/spec/tmp/my_app/script/destroy +3 -0
  404. data/spec/tmp/my_app/script/generate +3 -0
  405. data/spec/tmp/my_app/script/performance/benchmarker +3 -0
  406. data/spec/tmp/my_app/script/performance/profiler +3 -0
  407. data/spec/tmp/my_app/script/plugin +3 -0
  408. data/spec/tmp/my_app/script/runner +3 -0
  409. data/spec/tmp/my_app/script/server +3 -0
  410. data/spec/tmp/my_app/test/performance/browsing_test.rb +9 -0
  411. data/spec/tmp/my_app/test/test_helper.rb +38 -0
  412. data/tasks/rspec.rake +21 -0
  413. metadata +517 -0
@@ -0,0 +1,179 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <title>Admin</title>
5
+ <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
6
+ <style media="all" type="text/css">@import "css/all.css";</style>
7
+ </head>
8
+ <body>
9
+ <div id="main">
10
+ <div id="header">
11
+ <a href="index.html" class="logo"><img src="img/logo.gif" width="101" height="29" alt="" /></a>
12
+ <ul id="top-navigation">
13
+ <li class="active"><span><span>Homepage</span></span></li>
14
+ <li><span><span><a href="#">Users</a></span></span></li>
15
+ <li><span><span><a href="#">Orders</a></span></span></li>
16
+ <li><span><span><a href="#">Settings</a></span></span></li>
17
+ <li><span><span><a href="#">Statistics</a></span></span></li>
18
+ <li><span><span><a href="#">Design</a></span></span></li>
19
+ <li><span><span><a href="#">Contents</a></span></span></li>
20
+ </ul>
21
+ </div>
22
+ <div id="middle">
23
+ <div id="left-column">
24
+ <h3>Header</h3>
25
+ <ul class="nav">
26
+ <li><a href="#">Lorem Ipsum dollar</a></li>
27
+ <li><a href="#">Dollar</a></li>
28
+ <li><a href="#">Lorem dollar</a></li>
29
+ <li><a href="#">Ipsum dollar</a></li>
30
+ <li><a href="#">Lorem Ipsum dollar</a></li>
31
+ <li class="last"><a href="#">Dollar Lorem Ipsum</a></li>
32
+ </ul>
33
+ <a href="#" class="link">Link here</a>
34
+ <a href="#" class="link">Link here</a>
35
+ </div>
36
+ <div id="center-column">
37
+ <div class="top-bar">
38
+ <a href="#" class="button">ADD NEW </a>
39
+ <h1>Contents</h1>
40
+ <div class="breadcrumbs"><a href="#">Homepage</a> / <a href="#">Contents</a></div>
41
+ </div><br />
42
+ <div class="select-bar">
43
+ <label>
44
+ <input type="text" name="textfield" />
45
+ </label>
46
+ <label>
47
+ <input type="submit" name="Submit" value="Search" />
48
+ </label>
49
+ </div>
50
+ <div class="table">
51
+ <img src="img/bg-th-left.gif" width="8" height="7" alt="" class="left" />
52
+ <img src="img/bg-th-right.gif" width="7" height="7" alt="" class="right" />
53
+ <table class="listing" cellpadding="0" cellspacing="0">
54
+ <tr>
55
+ <th class="first" width="177">Header Here</th>
56
+ <th>Header</th>
57
+ <th>Head</th>
58
+ <th>Header</th>
59
+ <th>Header</th>
60
+ <th>Head</th>
61
+ <th>Header</th>
62
+ <th class="last">Head</th>
63
+ </tr>
64
+ <tr>
65
+ <td class="first style1">- Lorem Ipsum </td>
66
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="" /></td>
67
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
68
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="" /></td>
69
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="" /></td>
70
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="" /></td>
71
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
72
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
73
+ </tr>
74
+ <tr class="bg">
75
+ <td class="first style2">- Lorem Ipsum </td>
76
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
77
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
78
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
79
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
80
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
81
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
82
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
83
+ </tr>
84
+ <tr>
85
+ <td class="first style3">- Lorem Ipsum </td>
86
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
87
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
88
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
89
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
90
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
91
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
92
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
93
+ </tr>
94
+ <tr class="bg">
95
+ <td class="first style1">- Lorem Ipsum </td>
96
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
97
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
98
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
99
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
100
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
101
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
102
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
103
+ </tr>
104
+ <tr>
105
+ <td class="first style2">- Lorem Ipsum </td>
106
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
107
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
108
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
109
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
110
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
111
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
112
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
113
+ </tr>
114
+ <tr class="bg">
115
+ <td class="first style3">- Lorem Ipsum </td>
116
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
117
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
118
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
119
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
120
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
121
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
122
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
123
+ </tr>
124
+ <tr>
125
+ <td class="first style4">- Lorem Ipsum </td>
126
+ <td><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
127
+ <td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
128
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
129
+ <td><img src="img/edit-icon.gif" width="16" height="16" alt="edit" /></td>
130
+ <td><img src="img/login-icon.gif" width="16" height="16" alt="login" /></td>
131
+ <td><img src="img/save-icon.gif" width="16" height="16" alt="save" /></td>
132
+ <td class="last"><img src="img/add-icon.gif" width="16" height="16" alt="add" /></td>
133
+ </tr>
134
+ </table>
135
+ <div class="select">
136
+ <strong>Other Pages: </strong>
137
+ <select>
138
+ <option>1</option>
139
+ </select>
140
+ </div>
141
+ </div>
142
+ <div class="table">
143
+ <img src="img/bg-th-left.gif" width="8" height="7" alt="" class="left" />
144
+ <img src="img/bg-th-right.gif" width="7" height="7" alt="" class="right" />
145
+ <table class="listing form" cellpadding="0" cellspacing="0">
146
+ <tr>
147
+ <th class="full" colspan="2">Header Here</th>
148
+ </tr>
149
+ <tr>
150
+ <td class="first" width="172"><strong>Lorem Ipsum</strong></td>
151
+ <td class="last"><input type="text" class="text" /></td>
152
+ </tr>
153
+ <tr class="bg">
154
+ <td class="first"><strong>Lorem Ipsum</strong></td>
155
+ <td class="last"><input type="text" class="text" /></td>
156
+ </tr>
157
+ <tr>
158
+ <td class="first"><strong>Lorem Ipsum</strong></td>
159
+ <td class="last"><input type="text" class="text" /></td>
160
+ </tr>
161
+ <tr class="bg">
162
+ <td class="first"><strong>Lorem Ipsum</strong></td>
163
+ <td class="last"><input type="text" class="text" /></td>
164
+ </tr>
165
+ </table>
166
+ <p>&nbsp;</p>
167
+ </div>
168
+ </div>
169
+ <div id="right-column">
170
+ <strong class="h">INFO</strong>
171
+ <div class="box">Detect and eliminate viruses and Trojan horses, even new and unknown ones. Detect and eliminate viruses and Trojan horses, even new and </div>
172
+ </div>
173
+ </div>
174
+ <div id="footer"></div>
175
+ </div>
176
+
177
+
178
+ </body>
179
+ </html>
@@ -0,0 +1,18 @@
1
+ Spec::Matchers.define :have_same_contents_as do |expected_file|
2
+ diffable
3
+
4
+ match do |actual_root_path|
5
+ puts expected = File.read(expected_file)
6
+ false
7
+ end
8
+
9
+ description do
10
+ "match the file in the two projects"
11
+ end
12
+ end
13
+
14
+ Spec::Matchers.define :have_same_basename do |expected|
15
+ match do |actual|
16
+ File.basename(expected) == File.basename(actual)
17
+ end
18
+ end
data/spec/spec.opts ADDED
@@ -0,0 +1 @@
1
+ --colour
@@ -0,0 +1,39 @@
1
+ require 'rubygems'
2
+ require 'spec'
3
+
4
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
5
+ require 'convert_theme'
6
+ Dir[File.dirname(__FILE__) + "/matchers/*.rb"].each { |matcher| require matcher }
7
+
8
+ # When running specs in TextMate, provide an rputs method to cleanly print objects into HTML display
9
+ # From http://talklikeaduck.denhaven2.com/2009/09/23/rspec-textmate-pro-tip
10
+ module Kernel
11
+ if ENV.keys.find {|env_var| env_var.index("TM_") == 0}
12
+ require "cgi"
13
+ def rputs(*args)
14
+ puts( *["<pre>", args.collect {|a| CGI.escapeHTML(a.to_s)}, "</pre>"])
15
+ end
16
+ else
17
+ alias_method :rputs, :puts
18
+ end
19
+ end
20
+
21
+ def clean_file(orig_file)
22
+ tmp_dir = ENV['TMPDIR'] || '/tmp'
23
+ file = File.join(tmp_dir, 'clean_file.html')
24
+ File.open(file, "w") do |f|
25
+ f << Hpricot(open(orig_file)).to_html
26
+ end
27
+ file
28
+ end
29
+
30
+ def setup_base_rails(options = {})
31
+ tmp_path = File.dirname(__FILE__) + "/tmp"
32
+ FileUtils.rm_rf(tmp_path)
33
+ FileUtils.mkdir_p(tmp_path )
34
+ @target_application = File.join(tmp_path, "my_app")
35
+ FileUtils.cp_r(File.dirname(__FILE__) + "/expected/rails/base_app", @target_application)
36
+ `haml --rails #{@target_application}` if options[:haml]
37
+ @target_application
38
+ end
39
+
@@ -0,0 +1,243 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application framework that includes everything needed to create
4
+ database-backed web applications according to the Model-View-Control pattern.
5
+
6
+ This pattern splits the view (also called the presentation) into "dumb" templates
7
+ that are primarily responsible for inserting pre-built data in between HTML tags.
8
+ The model contains the "smart" domain objects (such as Account, Product, Person,
9
+ Post) that holds all the business logic and knows how to persist themselves to
10
+ a database. The controller handles the incoming requests (such as Save New Account,
11
+ Update Product, Show Post) by manipulating the model and directing data to the view.
12
+
13
+ In Rails, the model is handled by what's called an object-relational mapping
14
+ layer entitled Active Record. This layer allows you to present the data from
15
+ database rows as objects and embellish these data objects with business logic
16
+ methods. You can read more about Active Record in
17
+ link:files/vendor/rails/activerecord/README.html.
18
+
19
+ The controller and view are handled by the Action Pack, which handles both
20
+ layers by its two parts: Action View and Action Controller. These two layers
21
+ are bundled in a single package due to their heavy interdependence. This is
22
+ unlike the relationship between the Active Record and Action Pack that is much
23
+ more separate. Each of these packages can be used independently outside of
24
+ Rails. You can read more about Action Pack in
25
+ link:files/vendor/rails/actionpack/README.html.
26
+
27
+
28
+ == Getting Started
29
+
30
+ 1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
31
+ and your application name. Ex: rails myapp
32
+ 2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
33
+ 3. Go to http://localhost:3000/ and get "Welcome aboard: You're riding the Rails!"
34
+ 4. Follow the guidelines to start developing your application
35
+
36
+
37
+ == Web Servers
38
+
39
+ By default, Rails will try to use Mongrel if it's are installed when started with script/server, otherwise Rails will use WEBrick, the webserver that ships with Ruby. But you can also use Rails
40
+ with a variety of other web servers.
41
+
42
+ Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
43
+ suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
44
+ getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
45
+ More info at: http://mongrel.rubyforge.org
46
+
47
+ Say other Ruby web servers like Thin and Ebb or regular web servers like Apache or LiteSpeed or
48
+ Lighttpd or IIS. The Ruby web servers are run through Rack and the latter can either be setup to use
49
+ FCGI or proxy to a pack of Mongrels/Thin/Ebb servers.
50
+
51
+ == Apache .htaccess example for FCGI/CGI
52
+
53
+ # General Apache options
54
+ AddHandler fastcgi-script .fcgi
55
+ AddHandler cgi-script .cgi
56
+ Options +FollowSymLinks +ExecCGI
57
+
58
+ # If you don't want Rails to look in certain directories,
59
+ # use the following rewrite rules so that Apache won't rewrite certain requests
60
+ #
61
+ # Example:
62
+ # RewriteCond %{REQUEST_URI} ^/notrails.*
63
+ # RewriteRule .* - [L]
64
+
65
+ # Redirect all requests not available on the filesystem to Rails
66
+ # By default the cgi dispatcher is used which is very slow
67
+ #
68
+ # For better performance replace the dispatcher with the fastcgi one
69
+ #
70
+ # Example:
71
+ # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
72
+ RewriteEngine On
73
+
74
+ # If your Rails application is accessed via an Alias directive,
75
+ # then you MUST also set the RewriteBase in this htaccess file.
76
+ #
77
+ # Example:
78
+ # Alias /myrailsapp /path/to/myrailsapp/public
79
+ # RewriteBase /myrailsapp
80
+
81
+ RewriteRule ^$ index.html [QSA]
82
+ RewriteRule ^([^.]+)$ $1.html [QSA]
83
+ RewriteCond %{REQUEST_FILENAME} !-f
84
+ RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
85
+
86
+ # In case Rails experiences terminal errors
87
+ # Instead of displaying this message you can supply a file here which will be rendered instead
88
+ #
89
+ # Example:
90
+ # ErrorDocument 500 /500.html
91
+
92
+ ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
93
+
94
+
95
+ == Debugging Rails
96
+
97
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
98
+ will help you debug it and get it back on the rails.
99
+
100
+ First area to check is the application log files. Have "tail -f" commands running
101
+ on the server.log and development.log. Rails will automatically display debugging
102
+ and runtime information to these files. Debugging info will also be shown in the
103
+ browser on requests from 127.0.0.1.
104
+
105
+ You can also log your own messages directly into the log file from your code using
106
+ the Ruby logger class from inside your controllers. Example:
107
+
108
+ class WeblogController < ActionController::Base
109
+ def destroy
110
+ @weblog = Weblog.find(params[:id])
111
+ @weblog.destroy
112
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
113
+ end
114
+ end
115
+
116
+ The result will be a message in your log file along the lines of:
117
+
118
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1
119
+
120
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
121
+
122
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:
123
+
124
+ * The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
125
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
126
+
127
+ These two online (and free) books will bring you up to speed on the Ruby language
128
+ and also on programming in general.
129
+
130
+
131
+ == Debugger
132
+
133
+ Debugger support is available through the debugger command when you start your Mongrel or
134
+ Webrick server with --debugger. This means that you can break out of execution at any point
135
+ in the code, investigate and change the model, AND then resume execution!
136
+ You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
137
+ Example:
138
+
139
+ class WeblogController < ActionController::Base
140
+ def index
141
+ @posts = Post.find(:all)
142
+ debugger
143
+ end
144
+ end
145
+
146
+ So the controller will accept the action, run the first line, then present you
147
+ with a IRB prompt in the server window. Here you can do things like:
148
+
149
+ >> @posts.inspect
150
+ => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
151
+ #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
152
+ >> @posts.first.title = "hello from a debugger"
153
+ => "hello from a debugger"
154
+
155
+ ...and even better is that you can examine how your runtime objects actually work:
156
+
157
+ >> f = @posts.first
158
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
159
+ >> f.
160
+ Display all 152 possibilities? (y or n)
161
+
162
+ Finally, when you're ready to resume execution, you enter "cont"
163
+
164
+
165
+ == Console
166
+
167
+ You can interact with the domain model by starting the console through <tt>script/console</tt>.
168
+ Here you'll have all parts of the application configured, just like it is when the
169
+ application is running. You can inspect domain models, change values, and save to the
170
+ database. Starting the script without arguments will launch it in the development environment.
171
+ Passing an argument will specify a different environment, like <tt>script/console production</tt>.
172
+
173
+ To reload your controllers and models after launching the console run <tt>reload!</tt>
174
+
175
+ == dbconsole
176
+
177
+ You can go to the command line of your database directly through <tt>script/dbconsole</tt>.
178
+ You would be connected to the database with the credentials defined in database.yml.
179
+ Starting the script without arguments will connect you to the development database. Passing an
180
+ argument will connect you to a different database, like <tt>script/dbconsole production</tt>.
181
+ Currently works for mysql, postgresql and sqlite.
182
+
183
+ == Description of Contents
184
+
185
+ app
186
+ Holds all the code that's specific to this particular application.
187
+
188
+ app/controllers
189
+ Holds controllers that should be named like weblogs_controller.rb for
190
+ automated URL mapping. All controllers should descend from ApplicationController
191
+ which itself descends from ActionController::Base.
192
+
193
+ app/models
194
+ Holds models that should be named like post.rb.
195
+ Most models will descend from ActiveRecord::Base.
196
+
197
+ app/views
198
+ Holds the template files for the view that should be named like
199
+ weblogs/index.html.erb for the WeblogsController#index action. All views use eRuby
200
+ syntax.
201
+
202
+ app/views/layouts
203
+ Holds the template files for layouts to be used with views. This models the common
204
+ header/footer method of wrapping views. In your views, define a layout using the
205
+ <tt>layout :default</tt> and create a file named default.html.erb. Inside default.html.erb,
206
+ call <% yield %> to render the view using this layout.
207
+
208
+ app/helpers
209
+ Holds view helpers that should be named like weblogs_helper.rb. These are generated
210
+ for you automatically when using script/generate for controllers. Helpers can be used to
211
+ wrap functionality for your views into methods.
212
+
213
+ config
214
+ Configuration files for the Rails environment, the routing map, the database, and other dependencies.
215
+
216
+ db
217
+ Contains the database schema in schema.rb. db/migrate contains all
218
+ the sequence of Migrations for your schema.
219
+
220
+ doc
221
+ This directory is where your application documentation will be stored when generated
222
+ using <tt>rake doc:app</tt>
223
+
224
+ lib
225
+ Application specific libraries. Basically, any kind of custom code that doesn't
226
+ belong under controllers, models, or helpers. This directory is in the load path.
227
+
228
+ public
229
+ The directory available for the web server. Contains subdirectories for images, stylesheets,
230
+ and javascripts. Also contains the dispatchers and the default HTML files. This should be
231
+ set as the DOCUMENT_ROOT of your web server.
232
+
233
+ script
234
+ Helper scripts for automation and generation.
235
+
236
+ test
237
+ Unit and functional tests along with fixtures. When using the script/generate scripts, template
238
+ test files will be generated for you and placed in this directory.
239
+
240
+ vendor
241
+ External libraries that the application depends on. Also includes the plugins subdirectory.
242
+ If the app has frozen rails, those gems also go here, under vendor/rails/.
243
+ This directory is in the load path.