rabl 0.13.1 → 0.14.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (392) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +21 -0
  3. data/CONTRIBUTING.md +2 -2
  4. data/README.md +15 -10
  5. data/lib/rabl.rb +4 -4
  6. data/lib/rabl/builder.rb +29 -17
  7. data/lib/rabl/cache_engine.rb +30 -1
  8. data/lib/rabl/configuration.rb +2 -0
  9. data/lib/rabl/engine.rb +21 -10
  10. data/lib/rabl/helpers.rb +7 -3
  11. data/lib/rabl/railtie.rb +18 -1
  12. data/lib/rabl/template.rb +21 -1
  13. data/lib/rabl/version.rb +1 -1
  14. metadata +5 -384
  15. data/.gitignore +0 -8
  16. data/.travis.yml +0 -15
  17. data/Gemfile +0 -28
  18. data/Rakefile +0 -54
  19. data/examples/base.json.rabl +0 -8
  20. data/examples/demo.json.rabl +0 -42
  21. data/examples/inherited.json.rabl +0 -11
  22. data/fixtures/ashared/NOTES +0 -44
  23. data/fixtures/ashared/README +0 -39
  24. data/fixtures/ashared/migrate/20111002092016_create_users.rb +0 -15
  25. data/fixtures/ashared/migrate/20111002092019_create_posts.rb +0 -14
  26. data/fixtures/ashared/migrate/20111002092024_create_phone_numbers.rb +0 -16
  27. data/fixtures/ashared/models/phone_number.rb +0 -7
  28. data/fixtures/ashared/models/post.rb +0 -3
  29. data/fixtures/ashared/models/user.rb +0 -3
  30. data/fixtures/ashared/views/layouts/application.html.erb +0 -9
  31. data/fixtures/ashared/views/posts/_show_footer_script.js.erb +0 -1
  32. data/fixtures/ashared/views/posts/date.rabl +0 -3
  33. data/fixtures/ashared/views/posts/index.rabl +0 -12
  34. data/fixtures/ashared/views/posts/show.rabl +0 -17
  35. data/fixtures/ashared/views/users/index.json.rabl +0 -3
  36. data/fixtures/ashared/views/users/phone_number.json.rabl +0 -6
  37. data/fixtures/ashared/views/users/show.json.rabl +0 -16
  38. data/fixtures/ashared/views_rails_3/layouts/application.html.erb +0 -13
  39. data/fixtures/ashared/views_rails_3/posts/_show_footer_script.js.erb +0 -1
  40. data/fixtures/ashared/views_rails_3/posts/date.rabl +0 -3
  41. data/fixtures/ashared/views_rails_3/posts/index.html.erb +0 -3
  42. data/fixtures/ashared/views_rails_3/posts/index.rabl +0 -12
  43. data/fixtures/ashared/views_rails_3/posts/renderer.rabl +0 -8
  44. data/fixtures/ashared/views_rails_3/posts/renderer_partial.rabl +0 -4
  45. data/fixtures/ashared/views_rails_3/posts/show.html.erb +0 -3
  46. data/fixtures/ashared/views_rails_3/posts/show.rabl +0 -25
  47. data/fixtures/ashared/views_rails_3/posts/show.rabl_test_v1.rabl +0 -7
  48. data/fixtures/ashared/views_rails_3/users/index.json.rabl +0 -3
  49. data/fixtures/ashared/views_rails_3/users/phone_number.json.rabl +0 -8
  50. data/fixtures/ashared/views_rails_3/users/phone_number.xml.rabl +0 -1
  51. data/fixtures/ashared/views_rails_3/users/show.json.rabl +0 -16
  52. data/fixtures/ashared/views_rails_3/users/show.rabl_test_v1.rabl +0 -3
  53. data/fixtures/padrino_test/.components +0 -7
  54. data/fixtures/padrino_test/.gitignore +0 -7
  55. data/fixtures/padrino_test/Gemfile +0 -17
  56. data/fixtures/padrino_test/Rakefile +0 -3
  57. data/fixtures/padrino_test/app/app.rb +0 -31
  58. data/fixtures/padrino_test/app/controllers/posts.rb +0 -11
  59. data/fixtures/padrino_test/app/controllers/users.rb +0 -11
  60. data/fixtures/padrino_test/app/helpers/posts_helper.rb +0 -7
  61. data/fixtures/padrino_test/app/helpers/users_helper.rb +0 -7
  62. data/fixtures/padrino_test/app/views +0 -1
  63. data/fixtures/padrino_test/config.ru +0 -9
  64. data/fixtures/padrino_test/config/apps.rb +0 -34
  65. data/fixtures/padrino_test/config/boot.rb +0 -29
  66. data/fixtures/padrino_test/config/database.rb +0 -43
  67. data/fixtures/padrino_test/db/migrate +0 -1
  68. data/fixtures/padrino_test/db/schema.rb +0 -42
  69. data/fixtures/padrino_test/models +0 -1
  70. data/fixtures/padrino_test/public/favicon.ico +0 -0
  71. data/fixtures/padrino_test/test/app/controllers/posts_controller_test.rb +0 -1
  72. data/fixtures/padrino_test/test/app/controllers/users_controller_test.rb +0 -1
  73. data/fixtures/padrino_test/test/test.rake +0 -18
  74. data/fixtures/padrino_test/test/test_config.rb +0 -18
  75. data/fixtures/rails2/.gitignore +0 -1
  76. data/fixtures/rails2/Gemfile +0 -10
  77. data/fixtures/rails2/Rakefile +0 -14
  78. data/fixtures/rails2/app/controllers/application_controller.rb +0 -10
  79. data/fixtures/rails2/app/controllers/posts_controller.rb +0 -15
  80. data/fixtures/rails2/app/controllers/users_controller.rb +0 -15
  81. data/fixtures/rails2/app/helpers/application_helper.rb +0 -2
  82. data/fixtures/rails2/app/helpers/posts_helper.rb +0 -2
  83. data/fixtures/rails2/app/helpers/users_helper.rb +0 -2
  84. data/fixtures/rails2/app/models +0 -1
  85. data/fixtures/rails2/app/views +0 -1
  86. data/fixtures/rails2/config/boot.rb +0 -129
  87. data/fixtures/rails2/config/database.yml +0 -16
  88. data/fixtures/rails2/config/environment.rb +0 -64
  89. data/fixtures/rails2/config/environments/development.rb +0 -17
  90. data/fixtures/rails2/config/environments/production.rb +0 -28
  91. data/fixtures/rails2/config/environments/test.rb +0 -28
  92. data/fixtures/rails2/config/initializers/backtrace_silencers.rb +0 -7
  93. data/fixtures/rails2/config/initializers/cookie_verification_secret.rb +0 -7
  94. data/fixtures/rails2/config/initializers/inflections.rb +0 -10
  95. data/fixtures/rails2/config/initializers/mime_types.rb +0 -5
  96. data/fixtures/rails2/config/initializers/new_rails_defaults.rb +0 -21
  97. data/fixtures/rails2/config/initializers/session_store.rb +0 -15
  98. data/fixtures/rails2/config/locales/en.yml +0 -5
  99. data/fixtures/rails2/config/preinitializer.rb +0 -20
  100. data/fixtures/rails2/config/routes.rb +0 -45
  101. data/fixtures/rails2/db/migrate +0 -1
  102. data/fixtures/rails2/db/schema.rb +0 -40
  103. data/fixtures/rails2/db/seeds.rb +0 -7
  104. data/fixtures/rails2/public/404.html +0 -30
  105. data/fixtures/rails2/public/422.html +0 -30
  106. data/fixtures/rails2/public/500.html +0 -30
  107. data/fixtures/rails2/public/favicon.ico +0 -0
  108. data/fixtures/rails2/public/images/rails.png +0 -0
  109. data/fixtures/rails2/public/index.html +0 -275
  110. data/fixtures/rails2/public/robots.txt +0 -5
  111. data/fixtures/rails2/script/about +0 -4
  112. data/fixtures/rails2/script/console +0 -3
  113. data/fixtures/rails2/script/dbconsole +0 -3
  114. data/fixtures/rails2/script/destroy +0 -3
  115. data/fixtures/rails2/script/generate +0 -3
  116. data/fixtures/rails2/script/performance/benchmarker +0 -3
  117. data/fixtures/rails2/script/performance/profiler +0 -3
  118. data/fixtures/rails2/script/plugin +0 -3
  119. data/fixtures/rails2/script/runner +0 -3
  120. data/fixtures/rails2/script/server +0 -3
  121. data/fixtures/rails2/test/functionals/posts_controller_test.rb +0 -1
  122. data/fixtures/rails2/test/functionals/users_controller_test.rb +0 -1
  123. data/fixtures/rails2/test/test_helper.rb +0 -33
  124. data/fixtures/rails3/.gitignore +0 -4
  125. data/fixtures/rails3/Gemfile +0 -37
  126. data/fixtures/rails3/Rakefile +0 -12
  127. data/fixtures/rails3/app/controllers/application_controller.rb +0 -14
  128. data/fixtures/rails3/app/controllers/posts_controller.rb +0 -11
  129. data/fixtures/rails3/app/controllers/users_controller.rb +0 -11
  130. data/fixtures/rails3/app/models +0 -1
  131. data/fixtures/rails3/app/views +0 -1
  132. data/fixtures/rails3/config.ru +0 -4
  133. data/fixtures/rails3/config/application.rb +0 -42
  134. data/fixtures/rails3/config/boot.rb +0 -6
  135. data/fixtures/rails3/config/database.yml +0 -22
  136. data/fixtures/rails3/config/environment.rb +0 -5
  137. data/fixtures/rails3/config/environments/development.rb +0 -26
  138. data/fixtures/rails3/config/environments/production.rb +0 -49
  139. data/fixtures/rails3/config/environments/test.rb +0 -35
  140. data/fixtures/rails3/config/initializers/backtrace_silencers.rb +0 -7
  141. data/fixtures/rails3/config/initializers/inflections.rb +0 -10
  142. data/fixtures/rails3/config/initializers/mime_types.rb +0 -5
  143. data/fixtures/rails3/config/initializers/secret_token.rb +0 -7
  144. data/fixtures/rails3/config/initializers/session_store.rb +0 -8
  145. data/fixtures/rails3/config/locales/en.yml +0 -5
  146. data/fixtures/rails3/config/routes.rb +0 -61
  147. data/fixtures/rails3/db/migrate +0 -1
  148. data/fixtures/rails3/db/seeds.rb +0 -7
  149. data/fixtures/rails3/lib/tasks/.gitkeep +0 -0
  150. data/fixtures/rails3/public/404.html +0 -26
  151. data/fixtures/rails3/public/422.html +0 -26
  152. data/fixtures/rails3/public/500.html +0 -26
  153. data/fixtures/rails3/public/favicon.ico +0 -0
  154. data/fixtures/rails3/public/images/rails.png +0 -0
  155. data/fixtures/rails3/public/index.html +0 -239
  156. data/fixtures/rails3/public/robots.txt +0 -5
  157. data/fixtures/rails3/public/stylesheets/.gitkeep +0 -0
  158. data/fixtures/rails3/script/rails +0 -6
  159. data/fixtures/rails3/test/functional/posts_controller_test.rb +0 -1
  160. data/fixtures/rails3/test/functional/users_controller_test.rb +0 -1
  161. data/fixtures/rails3/test/test_helper.rb +0 -26
  162. data/fixtures/rails3_2/.gitignore +0 -15
  163. data/fixtures/rails3_2/Gemfile +0 -40
  164. data/fixtures/rails3_2/README.rdoc +0 -261
  165. data/fixtures/rails3_2/Rakefile +0 -12
  166. data/fixtures/rails3_2/app/assets/images/rails.png +0 -0
  167. data/fixtures/rails3_2/app/assets/javascripts/application.js +0 -15
  168. data/fixtures/rails3_2/app/assets/javascripts/posts.js.coffee +0 -3
  169. data/fixtures/rails3_2/app/assets/javascripts/users.js.coffee +0 -3
  170. data/fixtures/rails3_2/app/assets/stylesheets/application.css +0 -13
  171. data/fixtures/rails3_2/app/assets/stylesheets/posts.css.scss +0 -3
  172. data/fixtures/rails3_2/app/assets/stylesheets/users.css.scss +0 -3
  173. data/fixtures/rails3_2/app/controllers/application_controller.rb +0 -14
  174. data/fixtures/rails3_2/app/controllers/posts_controller.rb +0 -16
  175. data/fixtures/rails3_2/app/controllers/users_controller.rb +0 -11
  176. data/fixtures/rails3_2/app/helpers/application_helper.rb +0 -5
  177. data/fixtures/rails3_2/app/helpers/posts_helper.rb +0 -2
  178. data/fixtures/rails3_2/app/helpers/users_helper.rb +0 -2
  179. data/fixtures/rails3_2/app/mailers/.gitkeep +0 -0
  180. data/fixtures/rails3_2/app/models +0 -1
  181. data/fixtures/rails3_2/app/views +0 -1
  182. data/fixtures/rails3_2/config.ru +0 -4
  183. data/fixtures/rails3_2/config/application.rb +0 -59
  184. data/fixtures/rails3_2/config/boot.rb +0 -6
  185. data/fixtures/rails3_2/config/database.yml +0 -25
  186. data/fixtures/rails3_2/config/environment.rb +0 -5
  187. data/fixtures/rails3_2/config/environments/development.rb +0 -37
  188. data/fixtures/rails3_2/config/environments/production.rb +0 -67
  189. data/fixtures/rails3_2/config/environments/test.rb +0 -37
  190. data/fixtures/rails3_2/config/initializers/backtrace_silencers.rb +0 -7
  191. data/fixtures/rails3_2/config/initializers/inflections.rb +0 -15
  192. data/fixtures/rails3_2/config/initializers/mime_types.rb +0 -7
  193. data/fixtures/rails3_2/config/initializers/secret_token.rb +0 -7
  194. data/fixtures/rails3_2/config/initializers/session_store.rb +0 -8
  195. data/fixtures/rails3_2/config/initializers/wrap_parameters.rb +0 -14
  196. data/fixtures/rails3_2/config/locales/en.yml +0 -5
  197. data/fixtures/rails3_2/config/routes.rb +0 -64
  198. data/fixtures/rails3_2/db/migrate +0 -1
  199. data/fixtures/rails3_2/db/schema.rb +0 -42
  200. data/fixtures/rails3_2/db/seeds.rb +0 -7
  201. data/fixtures/rails3_2/doc/README_FOR_APP +0 -2
  202. data/fixtures/rails3_2/lib/assets/.gitkeep +0 -0
  203. data/fixtures/rails3_2/lib/tasks/.gitkeep +0 -0
  204. data/fixtures/rails3_2/log/.gitkeep +0 -0
  205. data/fixtures/rails3_2/public/404.html +0 -26
  206. data/fixtures/rails3_2/public/422.html +0 -26
  207. data/fixtures/rails3_2/public/500.html +0 -25
  208. data/fixtures/rails3_2/public/favicon.ico +0 -0
  209. data/fixtures/rails3_2/public/index.html +0 -241
  210. data/fixtures/rails3_2/public/robots.txt +0 -5
  211. data/fixtures/rails3_2/script/rails +0 -6
  212. data/fixtures/rails3_2/test/fixtures/phone_numbers.yml +0 -11
  213. data/fixtures/rails3_2/test/fixtures/posts.yml +0 -11
  214. data/fixtures/rails3_2/test/fixtures/users.yml +0 -11
  215. data/fixtures/rails3_2/test/functional/posts_controller_test.rb +0 -1
  216. data/fixtures/rails3_2/test/functional/users_controller_test.rb +0 -1
  217. data/fixtures/rails3_2/test/integration/.gitkeep +0 -0
  218. data/fixtures/rails3_2/test/performance/browsing_test.rb +0 -12
  219. data/fixtures/rails3_2/test/test_helper.rb +0 -26
  220. data/fixtures/rails3_2/test/unit/helpers/posts_helper_test.rb +0 -4
  221. data/fixtures/rails3_2/test/unit/helpers/users_helper_test.rb +0 -4
  222. data/fixtures/rails3_2/test/unit/phone_number_test.rb +0 -7
  223. data/fixtures/rails3_2/test/unit/post_test.rb +0 -7
  224. data/fixtures/rails3_2/test/unit/user_test.rb +0 -7
  225. data/fixtures/rails3_2/vendor/assets/javascripts/.gitkeep +0 -0
  226. data/fixtures/rails3_2/vendor/assets/stylesheets/.gitkeep +0 -0
  227. data/fixtures/rails3_2/vendor/plugins/.gitkeep +0 -0
  228. data/fixtures/rails4/.gitignore +0 -16
  229. data/fixtures/rails4/Gemfile +0 -49
  230. data/fixtures/rails4/README.rdoc +0 -28
  231. data/fixtures/rails4/Rakefile +0 -11
  232. data/fixtures/rails4/app/assets/javascripts/application.js +0 -16
  233. data/fixtures/rails4/app/assets/stylesheets/application.css +0 -13
  234. data/fixtures/rails4/app/controllers/application_controller.rb +0 -5
  235. data/fixtures/rails4/app/controllers/concerns/.keep +0 -0
  236. data/fixtures/rails4/app/controllers/posts_controller.rb +0 -16
  237. data/fixtures/rails4/app/controllers/users_controller.rb +0 -11
  238. data/fixtures/rails4/app/helpers/application_helper.rb +0 -5
  239. data/fixtures/rails4/app/mailers/.keep +0 -0
  240. data/fixtures/rails4/app/models +0 -1
  241. data/fixtures/rails4/app/views +0 -1
  242. data/fixtures/rails4/bin/bundle +0 -3
  243. data/fixtures/rails4/bin/rails +0 -4
  244. data/fixtures/rails4/bin/rake +0 -4
  245. data/fixtures/rails4/config.ru +0 -4
  246. data/fixtures/rails4/config/application.rb +0 -23
  247. data/fixtures/rails4/config/boot.rb +0 -4
  248. data/fixtures/rails4/config/database.yml +0 -25
  249. data/fixtures/rails4/config/environment.rb +0 -5
  250. data/fixtures/rails4/config/environments/development.rb +0 -29
  251. data/fixtures/rails4/config/environments/production.rb +0 -80
  252. data/fixtures/rails4/config/environments/test.rb +0 -36
  253. data/fixtures/rails4/config/initializers/backtrace_silencers.rb +0 -7
  254. data/fixtures/rails4/config/initializers/filter_parameter_logging.rb +0 -4
  255. data/fixtures/rails4/config/initializers/inflections.rb +0 -16
  256. data/fixtures/rails4/config/initializers/mime_types.rb +0 -7
  257. data/fixtures/rails4/config/initializers/secret_token.rb +0 -12
  258. data/fixtures/rails4/config/initializers/session_store.rb +0 -3
  259. data/fixtures/rails4/config/initializers/wrap_parameters.rb +0 -14
  260. data/fixtures/rails4/config/locales/en.yml +0 -23
  261. data/fixtures/rails4/config/routes.rb +0 -55
  262. data/fixtures/rails4/db/migrate +0 -1
  263. data/fixtures/rails4/db/seeds.rb +0 -7
  264. data/fixtures/rails4/lib/assets/.keep +0 -0
  265. data/fixtures/rails4/lib/tasks/.keep +0 -0
  266. data/fixtures/rails4/log/.keep +0 -0
  267. data/fixtures/rails4/public/404.html +0 -58
  268. data/fixtures/rails4/public/422.html +0 -58
  269. data/fixtures/rails4/public/500.html +0 -57
  270. data/fixtures/rails4/public/favicon.ico +0 -0
  271. data/fixtures/rails4/public/robots.txt +0 -5
  272. data/fixtures/rails4/test/controllers/.keep +0 -0
  273. data/fixtures/rails4/test/fixtures/.keep +0 -0
  274. data/fixtures/rails4/test/functional/posts_controller_test.rb +0 -1
  275. data/fixtures/rails4/test/functional/users_controller_test.rb +0 -1
  276. data/fixtures/rails4/test/helpers/.keep +0 -0
  277. data/fixtures/rails4/test/integration/.keep +0 -0
  278. data/fixtures/rails4/test/mailers/.keep +0 -0
  279. data/fixtures/rails4/test/models/.keep +0 -0
  280. data/fixtures/rails4/test/test_helper.rb +0 -26
  281. data/fixtures/rails4/vendor/assets/javascripts/.keep +0 -0
  282. data/fixtures/rails4/vendor/assets/stylesheets/.keep +0 -0
  283. data/fixtures/rails5/.gitignore +0 -21
  284. data/fixtures/rails5/Gemfile +0 -52
  285. data/fixtures/rails5/README.md +0 -24
  286. data/fixtures/rails5/Rakefile +0 -13
  287. data/fixtures/rails5/app/assets/config/manifest.js +0 -3
  288. data/fixtures/rails5/app/assets/images/.keep +0 -0
  289. data/fixtures/rails5/app/assets/javascripts/application.js +0 -16
  290. data/fixtures/rails5/app/assets/javascripts/cable.js +0 -13
  291. data/fixtures/rails5/app/assets/javascripts/channels/.keep +0 -0
  292. data/fixtures/rails5/app/assets/stylesheets/application.css +0 -15
  293. data/fixtures/rails5/app/channels/application_cable/channel.rb +0 -4
  294. data/fixtures/rails5/app/channels/application_cable/connection.rb +0 -4
  295. data/fixtures/rails5/app/controllers/application_controller.rb +0 -3
  296. data/fixtures/rails5/app/controllers/concerns/.keep +0 -0
  297. data/fixtures/rails5/app/controllers/posts_controller.rb +0 -17
  298. data/fixtures/rails5/app/controllers/users_controller.rb +0 -11
  299. data/fixtures/rails5/app/helpers/application_helper.rb +0 -5
  300. data/fixtures/rails5/app/jobs/application_job.rb +0 -2
  301. data/fixtures/rails5/app/mailers/application_mailer.rb +0 -4
  302. data/fixtures/rails5/app/models +0 -1
  303. data/fixtures/rails5/app/views +0 -1
  304. data/fixtures/rails5/bin/bundle +0 -3
  305. data/fixtures/rails5/bin/rails +0 -9
  306. data/fixtures/rails5/bin/rake +0 -9
  307. data/fixtures/rails5/bin/setup +0 -34
  308. data/fixtures/rails5/bin/spring +0 -15
  309. data/fixtures/rails5/bin/update +0 -29
  310. data/fixtures/rails5/config.ru +0 -5
  311. data/fixtures/rails5/config/application.rb +0 -15
  312. data/fixtures/rails5/config/boot.rb +0 -3
  313. data/fixtures/rails5/config/cable.yml +0 -9
  314. data/fixtures/rails5/config/database.yml +0 -25
  315. data/fixtures/rails5/config/environment.rb +0 -5
  316. data/fixtures/rails5/config/environments/development.rb +0 -54
  317. data/fixtures/rails5/config/environments/production.rb +0 -86
  318. data/fixtures/rails5/config/environments/test.rb +0 -42
  319. data/fixtures/rails5/config/initializers/application_controller_renderer.rb +0 -6
  320. data/fixtures/rails5/config/initializers/assets.rb +0 -11
  321. data/fixtures/rails5/config/initializers/backtrace_silencers.rb +0 -7
  322. data/fixtures/rails5/config/initializers/cookies_serializer.rb +0 -5
  323. data/fixtures/rails5/config/initializers/filter_parameter_logging.rb +0 -4
  324. data/fixtures/rails5/config/initializers/inflections.rb +0 -16
  325. data/fixtures/rails5/config/initializers/mime_types.rb +0 -4
  326. data/fixtures/rails5/config/initializers/new_framework_defaults.rb +0 -24
  327. data/fixtures/rails5/config/initializers/session_store.rb +0 -3
  328. data/fixtures/rails5/config/initializers/wrap_parameters.rb +0 -14
  329. data/fixtures/rails5/config/locales/en.yml +0 -23
  330. data/fixtures/rails5/config/puma.rb +0 -47
  331. data/fixtures/rails5/config/routes.rb +0 -8
  332. data/fixtures/rails5/config/secrets.yml +0 -22
  333. data/fixtures/rails5/config/spring.rb +0 -6
  334. data/fixtures/rails5/db/migrate +0 -1
  335. data/fixtures/rails5/db/schema.rb +0 -41
  336. data/fixtures/rails5/db/seeds.rb +0 -7
  337. data/fixtures/rails5/lib/assets/.keep +0 -0
  338. data/fixtures/rails5/lib/tasks/.keep +0 -0
  339. data/fixtures/rails5/log/.keep +0 -0
  340. data/fixtures/rails5/public/404.html +0 -67
  341. data/fixtures/rails5/public/422.html +0 -67
  342. data/fixtures/rails5/public/500.html +0 -66
  343. data/fixtures/rails5/public/apple-touch-icon-precomposed.png +0 -0
  344. data/fixtures/rails5/public/apple-touch-icon.png +0 -0
  345. data/fixtures/rails5/public/favicon.ico +0 -0
  346. data/fixtures/rails5/public/robots.txt +0 -5
  347. data/fixtures/rails5/test/controllers/.keep +0 -0
  348. data/fixtures/rails5/test/fixtures/.keep +0 -0
  349. data/fixtures/rails5/test/fixtures/files/.keep +0 -0
  350. data/fixtures/rails5/test/helpers/.keep +0 -0
  351. data/fixtures/rails5/test/integration/.keep +0 -0
  352. data/fixtures/rails5/test/mailers/.keep +0 -0
  353. data/fixtures/rails5/test/models/.keep +0 -0
  354. data/fixtures/rails5/test/test_helper.rb +0 -26
  355. data/fixtures/rails5/tmp/.keep +0 -0
  356. data/fixtures/rails5/vendor/assets/javascripts/.keep +0 -0
  357. data/fixtures/rails5/vendor/assets/stylesheets/.keep +0 -0
  358. data/fixtures/sinatra_test/Gemfile +0 -13
  359. data/fixtures/sinatra_test/Rakefile +0 -6
  360. data/fixtures/sinatra_test/app.rb +0 -55
  361. data/fixtures/sinatra_test/config.ru +0 -7
  362. data/fixtures/sinatra_test/db/migrate +0 -1
  363. data/fixtures/sinatra_test/models +0 -1
  364. data/fixtures/sinatra_test/test/functional/posts_controller_test.rb +0 -1
  365. data/fixtures/sinatra_test/test/functional/users_controller_test.rb +0 -1
  366. data/fixtures/sinatra_test/test/test_helper.rb +0 -19
  367. data/fixtures/sinatra_test/views +0 -1
  368. data/rabl.gemspec +0 -36
  369. data/test.watchr +0 -47
  370. data/test/bson_engine_test.rb +0 -310
  371. data/test/builder_test.rb +0 -362
  372. data/test/configuration_test.rb +0 -91
  373. data/test/engine_test.rb +0 -835
  374. data/test/helpers_test.rb +0 -136
  375. data/test/integration/posts_controller_test.rb +0 -108
  376. data/test/integration/rails3_2/posts_controller_test.rb +0 -263
  377. data/test/integration/rails3_2/users_controller_test.rb +0 -87
  378. data/test/integration/rails4/posts_controller_test.rb +0 -248
  379. data/test/integration/rails4/users_controller_test.rb +0 -87
  380. data/test/integration/test_init.rb +0 -36
  381. data/test/integration/users_controller_test.rb +0 -87
  382. data/test/models/ormless.rb +0 -3
  383. data/test/models/user.rb +0 -34
  384. data/test/msgpack_engine_test.rb +0 -312
  385. data/test/multi_builder_test.rb +0 -69
  386. data/test/partials_test.rb +0 -205
  387. data/test/plist_engine_test.rb +0 -308
  388. data/test/renderer_test.rb +0 -390
  389. data/test/silence.rb +0 -21
  390. data/test/template_test.rb +0 -63
  391. data/test/teststrap.rb +0 -37
  392. data/test/xml_test.rb +0 -297
data/test.watchr DELETED
@@ -1,47 +0,0 @@
1
- ENV["WATCHR"] = "1"
2
- system 'clear'
3
-
4
- def run(cmd)
5
- puts(cmd)
6
- system cmd
7
- end
8
-
9
- def run_test_file(file)
10
- system('clear')
11
- run(%Q(ruby -I"lib:test" -rubygems #{file}))
12
- end
13
-
14
- def run_all_tests
15
- system('clear')
16
- run('rake test')
17
- end
18
-
19
- def related_test_files(path)
20
- Dir['test/**/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_test.rb/ }
21
- end
22
-
23
- watch('test/teststrap\.rb') { run_all_tests }
24
- watch('test/(.*).*_test\.rb') { |m| run_test_file(m[0]) }
25
- watch('lib/.*/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } }
26
-
27
- # Ctrl-\
28
- Signal.trap 'QUIT' do
29
- puts " --- Running all tests ---\n\n"
30
- run_all_tests
31
- end
32
-
33
- @interrupted = false
34
-
35
- # Ctrl-C
36
- Signal.trap 'INT' do
37
- if @interrupted then
38
- @wants_to_quit = true
39
- abort("\n")
40
- else
41
- puts "Interrupt a second time to quit"
42
- @interrupted = true
43
- Kernel.sleep 1.5
44
- # raise Interrupt, nil # let the run loop catch it
45
- run_all_tests
46
- end
47
- end
@@ -1,310 +0,0 @@
1
- require File.expand_path('../teststrap', __FILE__)
2
- require 'rabl/template'
3
-
4
- context "Rabl::Engine" do
5
- helper(:rabl) { |t| RablTemplate.new("code", :format => 'bson') { t } }
6
-
7
- context "with bson defaults" do
8
- setup do
9
- Rabl.configure do |config|
10
- # Comment this line out because include_bson_root is default.
11
- #config.include_bson_root = true
12
- end
13
- end
14
-
15
- context "#object" do
16
- asserts "that it sets data source" do
17
- template = rabl %q{
18
- object @user
19
- }
20
- scope = Object.new
21
- scope.instance_variable_set :@user, User.new
22
- template.render(scope)
23
- end.matches "\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00"
24
-
25
- asserts "that it can set root node" do
26
- template = rabl %q{
27
- object @user => :person
28
- }
29
- scope = Object.new
30
- scope.instance_variable_set :@user, User.new
31
- template.render(scope).split("").sort
32
- end.equals "\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00".split("").sort
33
- end
34
-
35
- context "#collection" do
36
- asserts "that it sets object to be casted as a simple array" do
37
- template = rabl %{
38
- collection @users
39
- }
40
- scope = Object.new
41
- scope.instance_variable_set :@users, [User.new, User.new]
42
- template.render(scope).split("").sort
43
- end.equals "7\x00\x00\x00\x04users\x00+\x00\x00\x00\x030\x00\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00\x031\x00\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00\x00\x00".split("").sort
44
-
45
- asserts "that it sets root node for objects" do
46
- template = rabl %{
47
- collection @users => :people
48
- }
49
- scope = Object.new
50
- scope.instance_variable_set :@users, [User.new, User.new]
51
- template.render(scope).split("").sort
52
- end.equals "<\x00\x00\x00\x04people\x00/\x00\x00\x00\x030\x00\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00\x031\x00\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00\x00\x00".split("").sort
53
- end
54
-
55
- context "#attribute" do
56
- asserts "that it adds an attribute or method to be included in output" do
57
- template = rabl %{
58
- object @user
59
- attribute :name
60
- }
61
- scope = Object.new
62
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
63
- template.render(scope).split("").sort
64
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02name\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
65
-
66
- asserts "that it can add attribute under a different key name through :as" do
67
- template = rabl %{
68
- object @user
69
- attribute :name, :as => 'city'
70
- }
71
- scope = Object.new
72
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
73
- template.render(scope).split("").sort
74
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
75
-
76
- asserts "that it can add attribute under a different key name through hash" do
77
- template = rabl %{
78
- object @user
79
- attribute :name => :city
80
- }
81
- scope = Object.new
82
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
83
- template.render(scope).split("").sort
84
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
85
- end
86
-
87
- context "#code" do
88
- asserts "that it can create an arbitraty code node" do
89
- template = rabl %{
90
- code(:foo) { 'bar' }
91
- }
92
- template.render(Object.new).split("").sort
93
- end.equals "\x12\x00\x00\x00\x02foo\x00\x04\x00\x00\x00bar\x00\x00".split("").sort
94
-
95
- asserts "that it can be passed conditionals" do
96
- template = rabl %{
97
- code(:foo, :if => lambda { |i| false }) { 'bar' }
98
- }
99
- template.render(Object.new).split("").sort
100
- end.equals "\x05\x00\x00\x00\x00".split("").sort
101
- end
102
-
103
- context "#child" do
104
- asserts "that it can create a child node" do
105
- template = rabl %{
106
- object @user
107
- attribute :name
108
- child(@user) { attribute :city }
109
- }
110
- scope = Object.new
111
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
112
- template.render(scope).split("").sort
113
- end.equals "6\x00\x00\x00\x03user\x00+\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03user\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00\x00".split("").sort
114
-
115
- asserts "that it can create a child node with different key" do
116
- template = rabl %{
117
- object @user
118
- attribute :name
119
- child(@user => :person) { attribute :city }
120
- }
121
- scope = Object.new
122
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
123
- template.render(scope).split("").sort
124
- end.equals "8\x00\x00\x00\x03user\x00-\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03person\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00\x00".split("").sort
125
- end
126
-
127
- context "#glue" do
128
- asserts "that it glues data from a child node" do
129
- template = rabl %{
130
- object @user
131
- attribute :name
132
- glue(@user) { attribute :city }
133
- glue(@user) { attribute :age }
134
- }
135
- scope = Object.new
136
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA', :age => 12)
137
- template.render(scope).split("").sort
138
- end.equals "4\x00\x00\x00\x03user\x00)\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x02city\x00\x03\x00\x00\x00LA\x00\x10age\x00\f\x00\x00\x00\x00\x00".split("").sort
139
- end
140
-
141
- teardown do
142
- Rabl.reset_configuration!
143
- end
144
- end
145
-
146
- context "with bson_engine" do
147
- setup do
148
- class CustomEncodeEngine
149
- def self.serialize string
150
- 42
151
- end
152
- end
153
-
154
- Rabl.configure do |config|
155
- config.bson_engine = CustomEncodeEngine
156
- end
157
- end
158
-
159
- asserts 'that it returns process by custom to_json' do
160
- template = rabl %q{
161
- object @user
162
- }
163
- scope = Object.new
164
- scope.instance_variable_set :@user, User.new
165
- template.render(scope)
166
- end.equals "42"
167
-
168
- teardown do
169
- Rabl.reset_configuration!
170
- end
171
- end
172
-
173
- context "without bson root" do
174
- setup do
175
- Rabl.configure do |config|
176
- config.include_bson_root = false
177
- end
178
- end
179
-
180
- context "#object" do
181
- asserts "that it sets data source" do
182
- template = rabl %q{
183
- object @user
184
- }
185
- scope = Object.new
186
- scope.instance_variable_set :@user, User.new
187
- template.render(scope)
188
- end.matches "\x05\x00\x00\x00\x00"
189
-
190
- asserts "that it can set root node" do
191
- template = rabl %q{
192
- object @user => :person
193
- }
194
- scope = Object.new
195
- scope.instance_variable_set :@user, User.new
196
- template.render(scope)
197
- end.equals "\x05\x00\x00\x00\x00"
198
- end
199
-
200
- context "#collection" do
201
- asserts "that it sets object to be casted as a simple array" do
202
- template = rabl %{
203
- collection @users
204
- }
205
- scope = Object.new
206
- scope.instance_variable_set :@users, [User.new, User.new]
207
- template.render(scope).split("").sort
208
- end.equals "!\x00\x00\x00\x04users\x00\x15\x00\x00\x00\x030\x00\x05\x00\x00\x00\x00\x031\x00\x05\x00\x00\x00\x00\x00\x00".split("").sort
209
-
210
- asserts "that it sets root node for objects" do
211
- template = rabl %{
212
- collection @users => :person
213
- }
214
- scope = Object.new
215
- scope.instance_variable_set :@users, [User.new, User.new]
216
- template.render(scope).split("").sort
217
- end.equals "\"\x00\x00\x00\x04person\x00\x15\x00\x00\x00\x030\x00\x05\x00\x00\x00\x00\x031\x00\x05\x00\x00\x00\x00\x00\x00".split("").sort
218
- end
219
-
220
- context "#attribute" do
221
- asserts "that it adds an attribute or method to be included in output" do
222
- template = rabl %{
223
- object @user
224
- attribute :name
225
- }
226
- scope = Object.new
227
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
228
- template.render(scope).split("").sort
229
- end.equals "\x16\x00\x00\x00\x02name\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
230
-
231
- asserts "that it can add attribute under a different key name through :as" do
232
- template = rabl %{
233
- object @user
234
- attribute :name, :as => 'city'
235
- }
236
- scope = Object.new
237
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
238
- template.render(scope).split("").sort
239
- end.equals "\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
240
-
241
- asserts "that it can add attribute under a different key name through hash" do
242
- template = rabl %{
243
- object @user
244
- attribute :name => :city
245
- }
246
- scope = Object.new
247
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
248
- template.render(scope).split("").sort
249
- end.equals "\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
250
- end
251
-
252
- context "#code" do
253
- asserts "that it can create an arbitraty code node" do
254
- template = rabl %{
255
- code(:foo) { 'bar' }
256
- }
257
- template.render(Object.new).split("").sort
258
- end.equals "\x12\x00\x00\x00\x02foo\x00\x04\x00\x00\x00bar\x00\x00".split("").sort
259
-
260
- asserts "that it can be passed conditionals" do
261
- template = rabl %{
262
- code(:foo, :if => lambda { |i| false }) { 'bar' }
263
- }
264
- template.render(Object.new).split("").sort
265
- end.equals "\x05\x00\x00\x00\x00".split("").sort
266
- end
267
-
268
- context "#child" do
269
- asserts "that it can create a child node" do
270
- template = rabl %{
271
- object @user
272
- attribute :name
273
- child(@user) { attribute :city }
274
- }
275
- scope = Object.new
276
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
277
- template.render(scope).split("").sort
278
- end.equals "+\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03user\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00".split("").sort
279
-
280
- asserts "that it can create a child node with different key" do
281
- template = rabl %{
282
- object @user
283
- attribute :name
284
- child(@user => :person) { attribute :city }
285
- }
286
- scope = Object.new
287
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
288
- template.render(scope).split("").sort
289
- end.equals "-\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03person\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00".split("").sort
290
- end
291
-
292
- context "#glue" do
293
- asserts "that it glues data from a child node" do
294
- template = rabl %{
295
- object @user
296
- attribute :name
297
- glue(@user) { attribute :city }
298
- glue(@user) { attribute :age }
299
- }
300
- scope = Object.new
301
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA', :age => 12)
302
- template.render(scope).split("").sort
303
- end.equals ")\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x02city\x00\x03\x00\x00\x00LA\x00\x10age\x00\f\x00\x00\x00\x00".split("").sort
304
- end
305
-
306
- teardown do
307
- Rabl.reset_configuration!
308
- end
309
- end
310
- end
data/test/builder_test.rb DELETED
@@ -1,362 +0,0 @@
1
- require File.expand_path('../teststrap', __FILE__)
2
-
3
- context "Rabl::Builder" do
4
- helper(:builder) { |*args| Rabl::Builder.new(*args) }
5
- helper(:build_hash) { |*args| builder(*args).to_hash }
6
-
7
- setup do
8
- @users = [User.new, User.new]
9
- @user = User.new
10
- builder(nil, nil, {:view_path => '/path/to/views'})
11
- end
12
-
13
- context "#initialize" do
14
- asserts_topic.assigns :options
15
- asserts_topic.assigns :_view_path
16
- end
17
-
18
- context "#to_hash" do
19
- context "when given a simple object" do
20
- setup { builder(nil, { :attributes => [ { :name => :name } ] }) }
21
- asserts "that the object is set properly" do
22
- topic.to_hash(User.new, nil, :root_name => "user")
23
- end.equivalent_to({ "user" => { :name => "rabl" } })
24
- end
25
-
26
- context "when given an object alias" do
27
- setup { builder(nil, { :attributes => [ { :name => :name, :options => { :as => :foo } } ] }) }
28
- asserts "that the object is set properly" do
29
- topic.to_hash(User.new, nil, :root_name => "person")
30
- end.equivalent_to({ "person" => { :foo => "rabl" } })
31
- end
32
-
33
- context "when specified with no root" do
34
- setup { builder(nil, { :attributes => [ { :name => :name, :options => { :as => :name } } ] }) }
35
- asserts "that the object is set properly" do
36
- topic.to_hash(User.new, nil, :root => false)
37
- end.equivalent_to({ :name => "rabl" })
38
- end
39
-
40
- context "when nil values are replaced with empty strings" do
41
- setup do
42
- Rabl.configuration.replace_nil_values_with_empty_strings = true
43
- builder(nil, { :attributes => [ { :name => :name } ], :node => [{ :name => :extra, :options => {}, :block => lambda { |u| { :twitter => u.twitter } } }] })
44
- end
45
-
46
- asserts "that an empty string is returned as the value" do
47
- topic.to_hash(User.new(:name => nil, :twitter => nil))
48
- end.equivalent_to({ :name => '', :extra => { :twitter => '' } })
49
-
50
- asserts "that it handles existing non nil values correctly" do
51
- topic.to_hash(User.new(:name => 10, :twitter => 'twitter'))
52
- end.equivalent_to({ :name => 10, :extra => { :twitter => 'twitter' } })
53
-
54
- teardown do
55
- Rabl.configuration.replace_nil_values_with_empty_strings = false
56
- end
57
- end
58
-
59
- context "when empty string values are replaced with nil values" do
60
- setup do
61
- Rabl.configuration.replace_empty_string_values_with_nil_values = true
62
- builder(nil, { :attributes => [ { :name => :name } ], :node => [{ :name => :extra, :options => {}, :block => lambda { |u| { :twitter => u.twitter } } }] })
63
- end
64
-
65
- asserts "that nil is returned as the value" do
66
- topic.to_hash(User.new(:name => "", :twitter => ''))
67
- end.equivalent_to({ :name => nil, :extra => { :twitter => nil } })
68
-
69
- asserts "that it handles existing nil values correctly" do
70
- topic.to_hash(User.new(:name => nil, :twitter => nil))
71
- end.equivalent_to({ :name => nil, :extra => { :twitter => nil } })
72
-
73
- asserts "that it handles existing non nil values correctly" do
74
- topic.to_hash(User.new(:name => 10, :twitter => 'twitter'))
75
- end.equivalent_to({ :name => 10, :extra => { :twitter => 'twitter' } })
76
-
77
- teardown do
78
- Rabl.configuration.replace_empty_string_values_with_nil_values = false
79
- end
80
- end
81
-
82
- context "when nil values are excluded" do
83
- setup do
84
- Rabl.configuration.exclude_nil_values = true
85
- builder(nil, { :attributes => [ { :name => :name } ] })
86
- end
87
- asserts "that an nil attribute is not returned" do
88
- topic.to_hash(User.new(:name => nil))
89
- end.equivalent_to({ })
90
- teardown do
91
- Rabl.configuration.exclude_nil_values = false
92
- end
93
- end
94
- end
95
-
96
- context "#attribute" do
97
- asserts "that the node" do
98
- build_hash @user, :attributes => [ { :name => :name }, { :name => :city, :options => { :as => :city } } ]
99
- end.equivalent_to({:name => 'rabl', :city => 'irvine'})
100
-
101
- context "that with a non-existent attribute" do
102
- context "when non-existent attributes are allowed by the configuration" do
103
- setup { stub(Rabl.configuration).raise_on_missing_attribute { false } }
104
-
105
- asserts "the node" do
106
- build_hash @user, :attributes => [ { :name => :fake } ]
107
- end.equals({})
108
- end
109
-
110
- context "when non-existent attributes are forbidden by the configuration" do
111
- setup { stub(Rabl.configuration).raise_on_missing_attribute { true } }
112
-
113
- asserts "the node" do
114
- build_hash @user, :attributes => [ { :name => :fake } ]
115
- end.raises(RuntimeError)
116
- end
117
- end
118
-
119
- context "that with a string key" do
120
- setup { builder(nil, { :attributes => [ { :name => "name" } ] }) }
121
- asserts "the node name is converted to a symbol" do
122
- topic.to_hash(User.new, :name => "user")
123
- end.equivalent_to({ :name => "rabl" })
124
- end
125
-
126
- context "that with the same node names as strings and symbols" do
127
- setup { builder(nil, { :attributes => [ { :name => "name" }, { :name => :name } ] }) }
128
- asserts "the nodes aren't duplicated" do
129
- topic.to_hash(User.new, :name => "user")
130
- end.equivalent_to({ :name => "rabl" })
131
- end
132
- end
133
-
134
- context "#node" do
135
- asserts "that it has node :foo" do
136
- build_hash @user, :node => [{ :name => :foo, :options => {}, :block => lambda { |u| "bar" } }]
137
- end.equivalent_to({:foo => 'bar'})
138
-
139
- asserts "that using object it has node :boo" do
140
- build_hash @user, :node => [
141
- { :name => :foo, :options => {}, :block => lambda { |u| "bar" } },
142
- { :name => :baz, :options => {}, :block => lambda { |u| u.city } }
143
- ]
144
- end.equivalent_to({:foo => 'bar', :baz => 'irvine'})
145
-
146
- asserts "that it converts the node name to a symbol" do
147
- build_hash @user, :node => [{ :name => "foo", :options => {}, :block => lambda { |u| "bar" } }]
148
- end.equivalent_to({:foo => 'bar'})
149
-
150
- asserts "that the same node names as a string and symbol aren't duplicated" do
151
- build_hash @user, :node => [
152
- { :name => "foo", :options => {}, :block => lambda { |u| "bar" } },
153
- { :name => :foo, :options => {}, :block => lambda { |u| "bar" } }
154
- ]
155
- end.equivalent_to({:foo => 'bar'})
156
- end
157
-
158
- context "#child" do
159
- asserts "that it generates if no data present" do
160
- builder(nil, :child => []).to_hash(@user)
161
- end.equals({})
162
-
163
- asserts "that it generates with a hash" do
164
- b = builder(nil, :child => [ { :data => { @user => :user }, :options => { }, :block => lambda { |u| attribute :name } } ])
165
- b.to_hash(@user)
166
- end.equivalent_to({ :user => { :name => "rabl" } })
167
-
168
- asserts "that it generates with a hash alias" do
169
- b = builder nil, :child => [{ :data => { @user => :person }, :options => {}, :block => lambda { |u| attribute :name } }]
170
- b.to_hash(@user)
171
- end.equivalent_to({ :person => { :name => "rabl" } })
172
-
173
- asserts "that it generates with an object" do
174
- b = builder nil, :child => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name } }]
175
- e = Rabl::Engine.new('')
176
- mock(b).data_name(@user) { :user }
177
- mock(e).render.returns('xyz')
178
- mock(b).object_to_engine(@user, { :root => false }).returns(e).subject
179
- b.to_hash(@user)
180
- end.equivalent_to({ :user => 'xyz'})
181
-
182
- asserts "that it generates with an collection and child_root" do
183
- b = builder nil, { :child => [{ :data => @users, :options => {}, :block => lambda { |u| attribute :name } }] }, { :child_root => true }
184
- e = Rabl::Engine.new('')
185
- mock(b).data_name(@users) { :users }
186
- mock(e).render.returns('xyz')
187
- mock(b).object_to_engine(@users, { :root => true, :child_root => true }).returns(e).subject
188
- b.to_hash(@user)
189
- end.equivalent_to({ :users => 'xyz'})
190
-
191
- asserts "that it generates with an collection and no child root" do
192
- b = builder nil, { :child => [{ :data => @users, :options => {}, :block => lambda { |u| attribute :name } }] }, { :child_root => false }
193
- e = Rabl::Engine.new('')
194
- mock(b).data_name(@users) { :users }
195
- mock(e).render.returns('xyz')
196
- mock(b).object_to_engine(@users, { :root => false, :child_root => false }).returns(e).subject
197
- b.to_hash(@user)
198
- end.equivalent_to({ :users => 'xyz'})
199
-
200
- asserts "that it generates with an collection and a specified object_root_name and root" do
201
- ops = { :object_root => "person", :root => :people }
202
- b = builder nil, { :child => [{ :data => @users, :options => ops, :block => lambda { |u| attribute :name } }] }, { :child_root => true }
203
- e = Rabl::Engine.new('')
204
- mock(e).render.returns('xyz')
205
- mock(b).object_to_engine(@users, { :root => "person", :object_root_name => "person", :child_root => true }).returns(e).subject
206
- b.to_hash(@user)
207
- end.equivalent_to({ :people => 'xyz'})
208
-
209
- asserts "that it converts the child name to a symbol" do
210
- b = builder(nil, :child => [ { :data => { @user => "user" }, :options => { }, :block => lambda { |u| attribute :name } } ])
211
- b.to_hash(@user)
212
- end.equivalent_to({ :user => { :name => "rabl" } })
213
-
214
- asserts "that it does't duplicate childs with the same name as a string and symbol" do
215
- b = builder(nil, :child => [
216
- { :data => { @user => "user" }, :options => { }, :block => lambda { |u| attribute :name } },
217
- { :data => { @user => :user }, :options => { }, :block => lambda { |u| attribute :name } }
218
- ])
219
- b.to_hash(@user)
220
- end.equivalent_to({ :user => { :name => "rabl" } })
221
- end
222
-
223
- context "#glue" do
224
- asserts "that it generates if no data present" do
225
- builder(nil, :glue => []).to_hash(@user)
226
- end.equals({})
227
-
228
- asserts "that it generates the glue attributes" do
229
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name }}]
230
- e = Rabl::Engine.new('')
231
- mock(e).render.returns({:user => 'xyz'})
232
- mock(b).object_to_engine(@user, { :root => false }).returns(e).subject
233
- b.to_hash(@user)
234
- end.equivalent_to({ :user => 'xyz' })
235
-
236
- asserts "that it appends the glue attributes to result" do
237
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name => :user_name }}]
238
- b.to_hash(@user)
239
- end.equivalent_to({ :user_name => 'rabl' })
240
-
241
- asserts "that it does not generate new attributes if no glue attributes are present" do
242
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name }}]
243
- e = Rabl::Engine.new('')
244
- mock(e).render.returns({})
245
- mock(b).object_to_engine(@user,{ :root => false }).returns(e).subject
246
- b.to_hash(@user)
247
- end.equals({})
248
- end
249
-
250
- context "#extends" do
251
- asserts "that it does not generate if no data is present" do
252
- b = builder nil, :extends => [{ :file => 'users/show', :options => {}, :block => lambda { |u| attribute :name }}]
253
- e = Rabl::Engine.new('users/show')
254
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
255
- mock(e).render.returns({}).subject
256
- b.to_hash(@user)
257
- end.equals({})
258
-
259
- asserts "that it generates if data is present" do
260
- b = builder nil, :extends => [{ :file => 'users/show', :options => {}, :block => lambda { |u| attribute :name }}]
261
- e = Rabl::Engine.new('users/show')
262
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
263
- mock(e).render.returns({:user => 'xyz'}).subject
264
- b.to_hash(@user)
265
- end.equivalent_to({:user => 'xyz'})
266
-
267
- asserts "that it generates if local data is present but object is false" do
268
- b = builder nil, :extends => [{ :file => 'users/show', :options => { :object => @user }, :block => lambda { |u| attribute :name }}]
269
- e = Rabl::Engine.new('users/show')
270
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
271
- mock(e).render.returns({:user => 'xyz'}).subject
272
- b.to_hash(false)
273
- end.equivalent_to({:user => 'xyz'})
274
- end
275
-
276
- context "#resolve_conditionals" do
277
- class ArbObj
278
- def cool?
279
- false
280
- end
281
-
282
- def smooth?
283
- true
284
- end
285
- end
286
-
287
- asserts "that it can use symbols on if condition and return false if method returns false" do
288
- scope = Rabl::Builder.new(ArbObj.new)
289
- scope.send(:resolve_condition, { :if => :cool? })
290
- end.equals(false)
291
-
292
- asserts "that it can use symbols on if condition and return true if method returns true" do
293
- scope = Rabl::Builder.new(ArbObj.new)
294
- scope.send :resolve_condition, { :if => :smooth? }
295
- end.equals(true)
296
-
297
- asserts "that it can use symbols as unless condition and return true if method returns false" do
298
- scope = Rabl::Builder.new(ArbObj.new)
299
- scope.send :resolve_condition, { :unless => :cool? }
300
- end.equals(true)
301
-
302
- asserts "that it can use symbols as unless condition and return false if method returns true" do
303
- scope = Rabl::Builder.new(ArbObj.new)
304
- scope.send :resolve_condition, { :unless => :smooth? }
305
- end.equals(false)
306
-
307
- asserts "that it can use :unless and :if at the same time and return true when if is true and unless is false" do
308
- scope = Rabl::Builder.new(ArbObj.new)
309
- scope.send :resolve_condition, { :if => true, :unless => false }
310
- end.equals(true)
311
-
312
- asserts "that it can use :unless and :if at the same time and return false when if is false and unless is false" do
313
- scope = Rabl::Builder.new(ArbObj.new)
314
- scope.send :resolve_condition, { :if => false, :unless => false }
315
- end.equals(false)
316
-
317
- asserts "that it can use :unless and :if at the same time and return false when if is true and unless is true" do
318
- scope = Rabl::Builder.new(ArbObj.new)
319
- scope.send :resolve_condition, { :if => true, :unless => true }
320
- end.equals(false)
321
-
322
- asserts "that it can use :unless and :if at the same time and return false when if is false and unless is true" do
323
- scope = Rabl::Builder.new(ArbObj.new)
324
- scope.send :resolve_condition, { :if => false, :unless => true }
325
- end.equals(false)
326
-
327
- asserts "that it can use lambda on if condition and return false if lambda returns false" do
328
- scope = Rabl::Builder.new(ArbObj.new)
329
- scope.send(:resolve_condition, { :if => lambda { |obj| false } })
330
- end.equals(false)
331
-
332
- asserts "that it can use lambda on if condition and return true if lambda returns true" do
333
- scope = Rabl::Builder.new(ArbObj.new)
334
- scope.send(:resolve_condition, { :if => lambda { |obj| true } })
335
- end.equals(true)
336
-
337
- asserts "that it can use proc on if condition and return false if proc returns false" do
338
- scope = Rabl::Builder.new(ArbObj.new)
339
- scope.send(:resolve_condition, { :if => proc { false } })
340
- end.equals(false)
341
-
342
- asserts "that it can use proc on if condition and return true if proc returns true" do
343
- scope = Rabl::Builder.new(ArbObj.new)
344
- scope.send(:resolve_condition, { :if => proc { true } })
345
- end.equals(true)
346
-
347
- asserts "that it can use a variable on if condition and return true if variable is truthy" do
348
- scope = Rabl::Builder.new(ArbObj.new)
349
- scope.send(:resolve_condition, { :if => 'Im truthy' })
350
- end.equals('Im truthy')
351
-
352
- asserts "that it can use a variable on if condition and return false if variable is falsy" do
353
- scope = Rabl::Builder.new(ArbObj.new)
354
- scope.send(:resolve_condition, { :if => nil })
355
- end.equals(nil)
356
-
357
- asserts "that it can use a hash variable on if condition and return true" do
358
- scope = Rabl::Builder.new(ArbObj.new)
359
- scope.send(:resolve_condition, { :if => { some: 'data' } })
360
- end.equals({some: 'data'})
361
- end
362
- end