shoulda-matchers 3.1.0 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. checksums.yaml +5 -5
  2. data/{MIT-LICENSE → LICENSE} +1 -1
  3. data/README.md +407 -232
  4. data/docs/errors/NonCaseSwappableValueError.md +2 -2
  5. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +7 -80
  6. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +4 -3
  7. data/lib/shoulda/matchers/action_controller/flash_store.rb +2 -4
  8. data/lib/shoulda/matchers/action_controller/permit_matcher.rb +36 -30
  9. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +8 -10
  10. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +7 -9
  11. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +18 -15
  12. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +3 -2
  13. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +3 -3
  14. data/lib/shoulda/matchers/action_controller/route_matcher.rb +88 -29
  15. data/lib/shoulda/matchers/action_controller/route_params.rb +2 -2
  16. data/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +4 -4
  17. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +3 -3
  18. data/lib/shoulda/matchers/action_controller/set_session_or_flash_matcher.rb +19 -13
  19. data/lib/shoulda/matchers/action_controller.rb +2 -0
  20. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_changed_value_error.rb +1 -1
  21. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +5 -9
  22. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter_and_validator.rb +2 -2
  23. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters.rb +1 -1
  24. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setters_and_validators.rb +1 -1
  25. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +42 -39
  26. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +1 -1
  27. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +52 -26
  28. data/lib/shoulda/matchers/active_model/helpers.rb +2 -2
  29. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +32 -30
  30. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +2 -1
  31. data/lib/shoulda/matchers/active_model/qualifiers/allow_blank.rb +26 -0
  32. data/lib/shoulda/matchers/active_model/qualifiers/allow_nil.rb +26 -0
  33. data/lib/shoulda/matchers/active_model/qualifiers/ignoring_interference_by_writer.rb +1 -1
  34. data/lib/shoulda/matchers/active_model/qualifiers.rb +2 -0
  35. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +30 -6
  36. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +8 -3
  37. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +31 -16
  38. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +52 -16
  39. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +137 -84
  40. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +159 -46
  41. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +130 -66
  42. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +251 -24
  43. data/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +12 -9
  44. data/lib/shoulda/matchers/active_model/validation_matcher.rb +38 -6
  45. data/lib/shoulda/matchers/active_model/validation_message_finder.rb +2 -4
  46. data/lib/shoulda/matchers/active_model/validator.rb +4 -9
  47. data/lib/shoulda/matchers/active_model.rb +3 -5
  48. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +10 -7
  49. data/lib/shoulda/matchers/active_record/association_matcher.rb +386 -111
  50. data/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +5 -2
  51. data/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +4 -4
  52. data/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +1 -1
  53. data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +11 -6
  54. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +14 -15
  55. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +30 -8
  56. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +34 -11
  57. data/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +69 -0
  58. data/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +1 -1
  59. data/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +74 -0
  60. data/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +3 -2
  61. data/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +7 -5
  62. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +458 -42
  63. data/lib/shoulda/matchers/active_record/have_attached_matcher.rb +185 -0
  64. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +63 -23
  65. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +164 -48
  66. data/lib/shoulda/matchers/active_record/have_implicit_order_column.rb +106 -0
  67. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +13 -11
  68. data/lib/shoulda/matchers/active_record/have_rich_text_matcher.rb +83 -0
  69. data/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +132 -0
  70. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +18 -18
  71. data/lib/shoulda/matchers/active_record/uniqueness/test_model_creator.rb +1 -3
  72. data/lib/shoulda/matchers/active_record/uniqueness/test_models.rb +0 -2
  73. data/lib/shoulda/matchers/active_record/uniqueness.rb +1 -1
  74. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +430 -200
  75. data/lib/shoulda/matchers/active_record.rb +28 -20
  76. data/lib/shoulda/matchers/configuration.rb +12 -1
  77. data/lib/shoulda/matchers/doublespeak/double.rb +1 -1
  78. data/lib/shoulda/matchers/doublespeak/double_collection.rb +3 -3
  79. data/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +8 -5
  80. data/lib/shoulda/matchers/doublespeak/object_double.rb +6 -2
  81. data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +1 -5
  82. data/lib/shoulda/matchers/doublespeak/world.rb +2 -2
  83. data/lib/shoulda/matchers/doublespeak.rb +2 -1
  84. data/lib/shoulda/matchers/error.rb +1 -1
  85. data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +109 -29
  86. data/lib/shoulda/matchers/independent.rb +2 -2
  87. data/lib/shoulda/matchers/integrations/configuration.rb +8 -4
  88. data/lib/shoulda/matchers/integrations/libraries/action_controller.rb +1 -1
  89. data/lib/shoulda/matchers/integrations/libraries/rails.rb +2 -2
  90. data/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +1 -1
  91. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +1 -1
  92. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +1 -1
  93. data/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +1 -1
  94. data/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +1 -1
  95. data/lib/shoulda/matchers/rails_shim.rb +172 -51
  96. data/lib/shoulda/matchers/routing.rb +2 -2
  97. data/lib/shoulda/matchers/util/word_wrap.rb +17 -12
  98. data/lib/shoulda/matchers/util.rb +39 -5
  99. data/lib/shoulda/matchers/version.rb +1 -1
  100. data/lib/shoulda/matchers/warn.rb +4 -3
  101. data/shoulda-matchers.gemspec +33 -15
  102. metadata +31 -338
  103. data/.gitignore +0 -12
  104. data/.hound.yml +0 -3
  105. data/.hound_config/ruby.yml +0 -12
  106. data/.travis.yml +0 -19
  107. data/.yardopts +0 -10
  108. data/Appraisals +0 -73
  109. data/CONTRIBUTING.md +0 -101
  110. data/Gemfile +0 -15
  111. data/Gemfile.lock +0 -70
  112. data/NEWS.md +0 -986
  113. data/Rakefile +0 -39
  114. data/custom_plan.rb +0 -88
  115. data/doc_config/gh-pages/index.html.erb +0 -9
  116. data/doc_config/yard/setup.rb +0 -22
  117. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +0 -5967
  118. data/doc_config/yard/templates/default/fulldoc/html/css/full_list.css +0 -12
  119. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +0 -62
  120. data/doc_config/yard/templates/default/fulldoc/html/css/solarized.css +0 -69
  121. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +0 -312
  122. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +0 -32
  123. data/doc_config/yard/templates/default/fulldoc/html/full_list_class.erb +0 -1
  124. data/doc_config/yard/templates/default/fulldoc/html/full_list_method.erb +0 -8
  125. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +0 -298
  126. data/doc_config/yard/templates/default/fulldoc/html/js/full_list.js +0 -1
  127. data/doc_config/yard/templates/default/fulldoc/html/js/jquery.stickyheaders.js +0 -289
  128. data/doc_config/yard/templates/default/fulldoc/html/js/underscore.min.js +0 -6
  129. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +0 -8
  130. data/doc_config/yard/templates/default/layout/html/breadcrumb.erb +0 -14
  131. data/doc_config/yard/templates/default/layout/html/fonts.erb +0 -1
  132. data/doc_config/yard/templates/default/layout/html/footer.erb +0 -6
  133. data/doc_config/yard/templates/default/layout/html/layout.erb +0 -23
  134. data/doc_config/yard/templates/default/layout/html/search.erb +0 -13
  135. data/doc_config/yard/templates/default/layout/html/setup.rb +0 -40
  136. data/doc_config/yard/templates/default/method_details/html/source.erb +0 -10
  137. data/doc_config/yard/templates/default/module/html/box_info.erb +0 -31
  138. data/gemfiles/4.0.0.gemfile +0 -38
  139. data/gemfiles/4.0.0.gemfile.lock +0 -223
  140. data/gemfiles/4.0.1.gemfile +0 -38
  141. data/gemfiles/4.0.1.gemfile.lock +0 -225
  142. data/gemfiles/4.1.gemfile +0 -38
  143. data/gemfiles/4.1.gemfile.lock +0 -220
  144. data/gemfiles/4.2.gemfile +0 -38
  145. data/gemfiles/4.2.gemfile.lock +0 -243
  146. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +0 -159
  147. data/lib/shoulda/matchers/independent/delegate_method_matcher/stubbed_target.rb +0 -37
  148. data/script/SUPPORTED_VERSIONS +0 -1
  149. data/script/install_gems_in_all_appraisals +0 -14
  150. data/script/run_all_tests +0 -14
  151. data/script/update_gem_in_all_appraisals +0 -15
  152. data/script/update_gems_in_all_appraisals +0 -14
  153. data/spec/acceptance/active_model_integration_spec.rb +0 -23
  154. data/spec/acceptance/independent_matchers_spec.rb +0 -125
  155. data/spec/acceptance/multiple_libraries_integration_spec.rb +0 -55
  156. data/spec/acceptance/rails_integration_spec.rb +0 -156
  157. data/spec/acceptance_spec_helper.rb +0 -23
  158. data/spec/doublespeak_spec_helper.rb +0 -2
  159. data/spec/report_warnings.rb +0 -7
  160. data/spec/spec_helper.rb +0 -21
  161. data/spec/support/acceptance/adds_shoulda_matchers_to_project.rb +0 -133
  162. data/spec/support/acceptance/helpers/active_model_helpers.rb +0 -11
  163. data/spec/support/acceptance/helpers/array_helpers.rb +0 -13
  164. data/spec/support/acceptance/helpers/base_helpers.rb +0 -19
  165. data/spec/support/acceptance/helpers/command_helpers.rb +0 -55
  166. data/spec/support/acceptance/helpers/file_helpers.rb +0 -19
  167. data/spec/support/acceptance/helpers/gem_helpers.rb +0 -31
  168. data/spec/support/acceptance/helpers/minitest_helpers.rb +0 -11
  169. data/spec/support/acceptance/helpers/n_unit_helpers.rb +0 -25
  170. data/spec/support/acceptance/helpers/pluralization_helpers.rb +0 -13
  171. data/spec/support/acceptance/helpers/rails_version_helpers.rb +0 -11
  172. data/spec/support/acceptance/helpers/rspec_helpers.rb +0 -24
  173. data/spec/support/acceptance/helpers/ruby_version_helpers.rb +0 -9
  174. data/spec/support/acceptance/helpers/step_helpers.rb +0 -127
  175. data/spec/support/acceptance/helpers.rb +0 -31
  176. data/spec/support/acceptance/matchers/have_output.rb +0 -31
  177. data/spec/support/acceptance/matchers/indicate_number_of_tests_was_run_matcher.rb +0 -55
  178. data/spec/support/acceptance/matchers/indicate_that_tests_were_run_matcher.rb +0 -103
  179. data/spec/support/tests/bundle.rb +0 -94
  180. data/spec/support/tests/command_runner.rb +0 -230
  181. data/spec/support/tests/current_bundle.rb +0 -61
  182. data/spec/support/tests/database.rb +0 -28
  183. data/spec/support/tests/database_adapters/postgresql.rb +0 -25
  184. data/spec/support/tests/database_adapters/sqlite3.rb +0 -26
  185. data/spec/support/tests/database_configuration.rb +0 -33
  186. data/spec/support/tests/database_configuration_registry.rb +0 -28
  187. data/spec/support/tests/filesystem.rb +0 -100
  188. data/spec/support/tests/version.rb +0 -45
  189. data/spec/support/unit/active_record/create_table.rb +0 -54
  190. data/spec/support/unit/attribute.rb +0 -47
  191. data/spec/support/unit/capture.rb +0 -40
  192. data/spec/support/unit/change_value.rb +0 -111
  193. data/spec/support/unit/create_model_arguments/basic.rb +0 -135
  194. data/spec/support/unit/create_model_arguments/has_many.rb +0 -15
  195. data/spec/support/unit/create_model_arguments/uniqueness_matcher.rb +0 -74
  196. data/spec/support/unit/helpers/active_model_helpers.rb +0 -27
  197. data/spec/support/unit/helpers/active_model_versions.rb +0 -28
  198. data/spec/support/unit/helpers/active_record_versions.rb +0 -24
  199. data/spec/support/unit/helpers/active_resource_builder.rb +0 -27
  200. data/spec/support/unit/helpers/allow_value_matcher_helpers.rb +0 -15
  201. data/spec/support/unit/helpers/class_builder.rb +0 -90
  202. data/spec/support/unit/helpers/column_type_helpers.rb +0 -26
  203. data/spec/support/unit/helpers/confirmation_matcher_helpers.rb +0 -17
  204. data/spec/support/unit/helpers/controller_builder.rb +0 -63
  205. data/spec/support/unit/helpers/database_helpers.rb +0 -20
  206. data/spec/support/unit/helpers/i18n_faker.rb +0 -15
  207. data/spec/support/unit/helpers/mailer_builder.rb +0 -12
  208. data/spec/support/unit/helpers/model_builder.rb +0 -114
  209. data/spec/support/unit/helpers/rails_versions.rb +0 -28
  210. data/spec/support/unit/helpers/validation_matcher_scenario_helpers.rb +0 -44
  211. data/spec/support/unit/i18n.rb +0 -7
  212. data/spec/support/unit/load_environment.rb +0 -12
  213. data/spec/support/unit/matchers/deprecate.rb +0 -60
  214. data/spec/support/unit/matchers/fail_with_message_including_matcher.rb +0 -51
  215. data/spec/support/unit/matchers/fail_with_message_matcher.rb +0 -62
  216. data/spec/support/unit/matchers/print_warning_including.rb +0 -59
  217. data/spec/support/unit/model_creation_strategies/active_model.rb +0 -111
  218. data/spec/support/unit/model_creation_strategies/active_record.rb +0 -77
  219. data/spec/support/unit/model_creators/active_model.rb +0 -39
  220. data/spec/support/unit/model_creators/active_record/has_and_belongs_to_many.rb +0 -95
  221. data/spec/support/unit/model_creators/active_record/has_many.rb +0 -67
  222. data/spec/support/unit/model_creators/active_record/uniqueness_matcher.rb +0 -42
  223. data/spec/support/unit/model_creators/active_record.rb +0 -43
  224. data/spec/support/unit/model_creators/basic.rb +0 -97
  225. data/spec/support/unit/model_creators.rb +0 -19
  226. data/spec/support/unit/rails_application.rb +0 -126
  227. data/spec/support/unit/record_builder_with_i18n_validation_message.rb +0 -69
  228. data/spec/support/unit/record_validating_confirmation_builder.rb +0 -51
  229. data/spec/support/unit/record_with_different_error_attribute_builder.rb +0 -92
  230. data/spec/support/unit/shared_examples/ignoring_interference_by_writer.rb +0 -79
  231. data/spec/support/unit/shared_examples/numerical_submatcher.rb +0 -17
  232. data/spec/support/unit/shared_examples/set_session_or_flash.rb +0 -360
  233. data/spec/support/unit/validation_matcher_scenario.rb +0 -62
  234. data/spec/unit/shoulda/matchers/action_controller/callback_matcher_spec.rb +0 -82
  235. data/spec/unit/shoulda/matchers/action_controller/filter_param_matcher_spec.rb +0 -28
  236. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +0 -592
  237. data/spec/unit/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +0 -42
  238. data/spec/unit/shoulda/matchers/action_controller/render_template_matcher_spec.rb +0 -76
  239. data/spec/unit/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +0 -62
  240. data/spec/unit/shoulda/matchers/action_controller/rescue_from_matcher_spec.rb +0 -90
  241. data/spec/unit/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +0 -31
  242. data/spec/unit/shoulda/matchers/action_controller/route_matcher_spec.rb +0 -330
  243. data/spec/unit/shoulda/matchers/action_controller/route_params_spec.rb +0 -30
  244. data/spec/unit/shoulda/matchers/action_controller/set_flash_matcher_spec.rb +0 -67
  245. data/spec/unit/shoulda/matchers/action_controller/set_session_matcher_spec.rb +0 -17
  246. data/spec/unit/shoulda/matchers/action_controller/set_session_or_flash_matcher_spec.rb +0 -562
  247. data/spec/unit/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +0 -115
  248. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +0 -823
  249. data/spec/unit/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +0 -86
  250. data/spec/unit/shoulda/matchers/active_model/have_secure_password_matcher_spec.rb +0 -20
  251. data/spec/unit/shoulda/matchers/active_model/helpers_spec.rb +0 -162
  252. data/spec/unit/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +0 -266
  253. data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +0 -91
  254. data/spec/unit/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +0 -149
  255. data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +0 -207
  256. data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +0 -1015
  257. data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +0 -288
  258. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +0 -1837
  259. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +0 -380
  260. data/spec/unit/shoulda/matchers/active_record/accept_nested_attributes_for_matcher_spec.rb +0 -107
  261. data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +0 -1242
  262. data/spec/unit/shoulda/matchers/active_record/association_matchers/model_reflection_spec.rb +0 -251
  263. data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +0 -168
  264. data/spec/unit/shoulda/matchers/active_record/have_db_column_matcher_spec.rb +0 -111
  265. data/spec/unit/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +0 -85
  266. data/spec/unit/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb +0 -41
  267. data/spec/unit/shoulda/matchers/active_record/serialize_matcher_spec.rb +0 -86
  268. data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +0 -1418
  269. data/spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb +0 -190
  270. data/spec/unit/shoulda/matchers/doublespeak/double_implementation_registry_spec.rb +0 -21
  271. data/spec/unit/shoulda/matchers/doublespeak/double_spec.rb +0 -271
  272. data/spec/unit/shoulda/matchers/doublespeak/object_double_spec.rb +0 -77
  273. data/spec/unit/shoulda/matchers/doublespeak/proxy_implementation_spec.rb +0 -72
  274. data/spec/unit/shoulda/matchers/doublespeak/stub_implementation_spec.rb +0 -101
  275. data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +0 -80
  276. data/spec/unit/shoulda/matchers/doublespeak_spec.rb +0 -27
  277. data/spec/unit/shoulda/matchers/independent/delegate_method_matcher/stubbed_target_spec.rb +0 -43
  278. data/spec/unit/shoulda/matchers/independent/delegate_method_matcher_spec.rb +0 -517
  279. data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +0 -242
  280. data/spec/unit/shoulda/matchers/util/word_wrap_spec.rb +0 -252
  281. data/spec/unit_spec_helper.rb +0 -46
  282. data/spec/warnings_spy/filesystem.rb +0 -45
  283. data/spec/warnings_spy/partitioner.rb +0 -36
  284. data/spec/warnings_spy/reader.rb +0 -53
  285. data/spec/warnings_spy/reporter.rb +0 -88
  286. data/spec/warnings_spy.rb +0 -64
  287. data/tasks/documentation.rb +0 -199
  288. data/zeus.json +0 -11
@@ -1,13 +0,0 @@
1
- <div id="search" class="js-search">
2
- <ul>
3
- <% menu_lists.each do |field| %>
4
- <li>
5
- <a href="<%= url_for_list(field[:type]) %>">
6
- <%= field[:search_title] %>
7
- </a>
8
- </li>
9
- <% end %>
10
- </ul>
11
-
12
- <iframe id="search_frame" class="js-search-frame"></iframe>
13
- </div>
@@ -1,40 +0,0 @@
1
- def stylesheets
2
- %w(css/solarized.css css/bootstrap.css css/global.css) + super
3
- end
4
-
5
- def javascripts
6
- javascripts = super
7
- javascripts.insert 1, 'js/jquery.stickyheaders.js', 'js/underscore.min.js'
8
- end
9
-
10
- def diskfile
11
- @file.attributes[:markup] ||= markup_for_file('', @file.filename)
12
-
13
- if @file.filename == 'README.md'
14
- contents = preprocess_index(@file.contents)
15
- else
16
- contents = @file.contents
17
- end
18
-
19
- data = htmlify(contents, @file.attributes[:markup])
20
- "<div id='filecontents'>" + data + "</div>"
21
- end
22
-
23
- def preprocess_index(contents)
24
- regex = /\[ (\w+) \] \( lib \/ ([^()]+) \.rb (?:\#L\d+)? \)/x
25
-
26
- contents.gsub(regex) do
27
- method_name, file_path = $1, $2
28
-
29
- module_name = file_path.split('/')[0..2].
30
- map do |value|
31
- value.
32
- split('_').
33
- map { |word| word[0].upcase + word[1..-1] }.
34
- join
35
- end.
36
- join('::')
37
-
38
- "{#{module_name}##{method_name} #{method_name}}"
39
- end
40
- end
@@ -1,10 +0,0 @@
1
- <table class="source_code">
2
- <tr>
3
- <td class="lines">
4
- <pre><%= "\n\n\n" %><%= h format_lines(object) %></pre>
5
- </td>
6
- <td class="code">
7
- <pre><span class="info file"># File '<%= h object.file %>'<% if object.line %>, line <%= object.line %><% end %></span><%= "\n\n" %><%= html_syntax_highlight object.source %></pre>
8
- </td>
9
- </tr>
10
- </table>
@@ -1,31 +0,0 @@
1
- <% n = 1 %>
2
- <dl class="box">
3
- <% if CodeObjects::ClassObject === object && object.superclass %>
4
- <dt class="r<%=n%>">Inherits:</dt>
5
- <dd class="r<%=n%>">
6
- <span class="inheritName"><%= linkify object.superclass %></span>
7
- <% if object.superclass.name != :BasicObject %>
8
- <ul class="fullTree">
9
- <li><%= linkify P(:Object) %></li>
10
- <% object.inheritance_tree.reverse.each_with_index do |obj, i| %>
11
- <li class="next"><%= obj == object ? obj.path : linkify(obj) %></li>
12
- <% end %>
13
- </ul>
14
- <a href="#" class="inheritanceTree">show all</a>
15
- <% end %>
16
- </dd>
17
- <% n = 2 %>
18
- <% end %>
19
- <% [[:class, "Extended by"], [:instance, "Includes"]].each do |scope, name| %>
20
- <% if (mix = run_verifier(object.mixins(scope))).size > 0 %>
21
- <dt class="r<%=n%>"><%= name %>:</dt>
22
- <dd class="r<%=n%>"><%= mix.sort_by {|o| o.path }.map {|o| linkify(o) }.join(", ") %></dd>
23
- <% n = n == 2 ? 1 : 2 %>
24
- <% end %>
25
- <% end %>
26
- <% if (mixed_into = mixed_into(object)).size > 0 %>
27
- <dt class="r<%=n%>">Included in:</dt>
28
- <dd class="r<%=n%>"><%= mixed_into.sort_by {|o| o.path }.map {|o| linkify(o) }.join(", ") %></dd>
29
- <% n = n == 2 ? 1 : 2 %>
30
- <% end %>
31
- </dl>
@@ -1,38 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.0"
6
- gem "bundler", "~> 1.1"
7
- gem "pry", :github => "pry/pry"
8
- gem "pry-byebug"
9
- gem "rake", "~> 10.0"
10
- gem "rspec", "~> 3.2"
11
- gem "zeus"
12
- gem "yard"
13
- gem "redcarpet"
14
- gem "pygments.rb"
15
- gem "fssm"
16
- gem "rspec-rails", ">= 3.2.0", "< 4"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "pg", :platform => :ruby
20
- gem "activerecord-jdbc-adapter", :platform => :jruby
21
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
22
- gem "jdbc-sqlite3", :platform => :jruby
23
- gem "jruby-openssl", :platform => :jruby
24
- gem "therubyrhino", :platform => :jruby
25
- gem "spring"
26
- gem "spring-commands-rspec"
27
- gem "uglifier", ">= 1.3.0"
28
- gem "coffee-rails", "~> 4.0.0"
29
- gem "jquery-rails"
30
- gem "turbolinks"
31
- gem "sdoc"
32
- gem "activeresource", "4.0.0"
33
- gem "protected_attributes"
34
- gem "minitest-reporters"
35
- gem "rails", "4.0.0"
36
- gem "jbuilder", "~> 1.2"
37
- gem "sass-rails", "~> 4.0.0"
38
- gem "bcrypt-ruby", "~> 3.0.0"
@@ -1,223 +0,0 @@
1
- GIT
2
- remote: git://github.com/pry/pry.git
3
- revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
- specs:
5
- pry (0.10.1)
6
- coderay (~> 1.1.0)
7
- method_source (~> 0.8.1)
8
- slop (~> 3.4)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionmailer (4.0.0)
14
- actionpack (= 4.0.0)
15
- mail (~> 2.5.3)
16
- actionpack (4.0.0)
17
- activesupport (= 4.0.0)
18
- builder (~> 3.1.0)
19
- erubis (~> 2.7.0)
20
- rack (~> 1.5.2)
21
- rack-test (~> 0.6.2)
22
- activemodel (4.0.0)
23
- activesupport (= 4.0.0)
24
- builder (~> 3.1.0)
25
- activerecord (4.0.0)
26
- activemodel (= 4.0.0)
27
- activerecord-deprecated_finders (~> 1.0.2)
28
- activesupport (= 4.0.0)
29
- arel (~> 4.0.0)
30
- activerecord-deprecated_finders (1.0.4)
31
- activeresource (4.0.0)
32
- activemodel (~> 4.0)
33
- activesupport (~> 4.0)
34
- rails-observers (~> 0.1.1)
35
- activesupport (4.0.0)
36
- i18n (~> 0.6, >= 0.6.4)
37
- minitest (~> 4.2)
38
- multi_json (~> 1.3)
39
- thread_safe (~> 0.1)
40
- tzinfo (~> 0.3.37)
41
- ansi (1.5.0)
42
- appraisal (2.1.0)
43
- bundler
44
- rake
45
- thor (>= 0.14.0)
46
- arel (4.0.2)
47
- bcrypt-ruby (3.0.1)
48
- builder (3.1.4)
49
- byebug (5.0.0)
50
- columnize (= 0.9.0)
51
- coderay (1.1.0)
52
- coffee-rails (4.0.1)
53
- coffee-script (>= 2.2.0)
54
- railties (>= 4.0.0, < 5.0)
55
- coffee-script (2.4.1)
56
- coffee-script-source
57
- execjs
58
- coffee-script-source (1.9.1.1)
59
- columnize (0.9.0)
60
- diff-lcs (1.2.5)
61
- erubis (2.7.0)
62
- execjs (2.6.0)
63
- fssm (0.2.10)
64
- hashie (3.4.2)
65
- hike (1.2.3)
66
- i18n (0.7.0)
67
- jbuilder (1.5.3)
68
- activesupport (>= 3.0.0)
69
- multi_json (>= 1.2.0)
70
- jquery-rails (3.1.4)
71
- railties (>= 3.0, < 5.0)
72
- thor (>= 0.14, < 2.0)
73
- json (1.8.3)
74
- mail (2.5.4)
75
- mime-types (~> 1.16)
76
- treetop (~> 1.4.8)
77
- method_source (0.8.2)
78
- mime-types (1.25.1)
79
- minitest (4.7.5)
80
- minitest-reporters (0.14.24)
81
- ansi
82
- builder
83
- minitest (>= 2.12, < 5.0)
84
- powerbar
85
- multi_json (1.11.2)
86
- pg (0.18.3)
87
- polyglot (0.3.5)
88
- posix-spawn (0.3.11)
89
- powerbar (1.0.12)
90
- ansi (~> 1.5.0)
91
- hashie (>= 1.1.0)
92
- protected_attributes (1.0.3)
93
- activemodel (>= 4.0.0, < 5.0)
94
- pry-byebug (3.2.0)
95
- byebug (~> 5.0)
96
- pry (~> 0.10)
97
- pygments.rb (0.6.3)
98
- posix-spawn (~> 0.3.6)
99
- yajl-ruby (~> 1.2.0)
100
- rack (1.5.5)
101
- rack-test (0.6.3)
102
- rack (>= 1.0)
103
- rails (4.0.0)
104
- actionmailer (= 4.0.0)
105
- actionpack (= 4.0.0)
106
- activerecord (= 4.0.0)
107
- activesupport (= 4.0.0)
108
- bundler (>= 1.3.0, < 2.0)
109
- railties (= 4.0.0)
110
- sprockets-rails (~> 2.0.0)
111
- rails-observers (0.1.2)
112
- activemodel (~> 4.0)
113
- railties (4.0.0)
114
- actionpack (= 4.0.0)
115
- activesupport (= 4.0.0)
116
- rake (>= 0.8.7)
117
- thor (>= 0.18.1, < 2.0)
118
- rake (10.4.2)
119
- rdoc (4.2.0)
120
- redcarpet (3.3.2)
121
- rspec (3.4.0)
122
- rspec-core (~> 3.4.0)
123
- rspec-expectations (~> 3.4.0)
124
- rspec-mocks (~> 3.4.0)
125
- rspec-core (3.4.1)
126
- rspec-support (~> 3.4.0)
127
- rspec-expectations (3.4.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.4.0)
130
- rspec-mocks (3.4.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.4.0)
133
- rspec-rails (3.4.0)
134
- actionpack (>= 3.0, < 4.3)
135
- activesupport (>= 3.0, < 4.3)
136
- railties (>= 3.0, < 4.3)
137
- rspec-core (~> 3.4.0)
138
- rspec-expectations (~> 3.4.0)
139
- rspec-mocks (~> 3.4.0)
140
- rspec-support (~> 3.4.0)
141
- rspec-support (3.4.1)
142
- sass (3.2.19)
143
- sass-rails (4.0.5)
144
- railties (>= 4.0.0, < 5.0)
145
- sass (~> 3.2.2)
146
- sprockets (~> 2.8, < 3.0)
147
- sprockets-rails (~> 2.0)
148
- sdoc (0.4.1)
149
- json (~> 1.7, >= 1.7.7)
150
- rdoc (~> 4.0)
151
- shoulda-context (1.2.1)
152
- slop (3.6.0)
153
- spring (1.4.0)
154
- spring-commands-rspec (1.0.4)
155
- spring (>= 0.9.1)
156
- sprockets (2.12.4)
157
- hike (~> 1.2)
158
- multi_json (~> 1.0)
159
- rack (~> 1.0)
160
- tilt (~> 1.1, != 1.3.0)
161
- sprockets-rails (2.0.1)
162
- actionpack (>= 3.0)
163
- activesupport (>= 3.0)
164
- sprockets (~> 2.8)
165
- sqlite3 (1.3.10)
166
- thor (0.19.1)
167
- thread_safe (0.3.5)
168
- tilt (1.4.1)
169
- treetop (1.4.15)
170
- polyglot
171
- polyglot (>= 0.3.1)
172
- turbolinks (2.5.3)
173
- coffee-rails
174
- tzinfo (0.3.46)
175
- uglifier (2.7.2)
176
- execjs (>= 0.3.0)
177
- json (>= 1.8.0)
178
- yajl-ruby (1.2.1)
179
- yard (0.8.7.6)
180
- zeus (0.15.4)
181
- method_source (>= 0.6.7)
182
-
183
- PLATFORMS
184
- ruby
185
-
186
- DEPENDENCIES
187
- activerecord-jdbc-adapter
188
- activerecord-jdbcsqlite3-adapter
189
- activeresource (= 4.0.0)
190
- appraisal (~> 2.0)
191
- bcrypt-ruby (~> 3.0.0)
192
- bundler (~> 1.1)
193
- coffee-rails (~> 4.0.0)
194
- fssm
195
- jbuilder (~> 1.2)
196
- jdbc-sqlite3
197
- jquery-rails
198
- jruby-openssl
199
- minitest-reporters
200
- pg
201
- protected_attributes
202
- pry!
203
- pry-byebug
204
- pygments.rb
205
- rails (= 4.0.0)
206
- rake (~> 10.0)
207
- redcarpet
208
- rspec (~> 3.2)
209
- rspec-rails (>= 3.2.0, < 4)
210
- sass-rails (~> 4.0.0)
211
- sdoc
212
- shoulda-context (~> 1.2.0)
213
- spring
214
- spring-commands-rspec
215
- sqlite3
216
- therubyrhino
217
- turbolinks
218
- uglifier (>= 1.3.0)
219
- yard
220
- zeus
221
-
222
- BUNDLED WITH
223
- 1.11.1
@@ -1,38 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.0"
6
- gem "bundler", "~> 1.1"
7
- gem "pry", :github => "pry/pry"
8
- gem "pry-byebug"
9
- gem "rake", "~> 10.0"
10
- gem "rspec", "~> 3.2"
11
- gem "zeus"
12
- gem "yard"
13
- gem "redcarpet"
14
- gem "pygments.rb"
15
- gem "fssm"
16
- gem "rspec-rails", ">= 3.2.0", "< 4"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "pg", :platform => :ruby
20
- gem "activerecord-jdbc-adapter", :platform => :jruby
21
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
22
- gem "jdbc-sqlite3", :platform => :jruby
23
- gem "jruby-openssl", :platform => :jruby
24
- gem "therubyrhino", :platform => :jruby
25
- gem "spring"
26
- gem "spring-commands-rspec"
27
- gem "uglifier", ">= 1.3.0"
28
- gem "coffee-rails", "~> 4.0.0"
29
- gem "jquery-rails"
30
- gem "turbolinks"
31
- gem "sdoc"
32
- gem "activeresource", "4.0.0"
33
- gem "protected_attributes"
34
- gem "minitest-reporters"
35
- gem "rails", "4.0.1"
36
- gem "jbuilder", "~> 1.2"
37
- gem "sass-rails", "~> 4.0.0"
38
- gem "bcrypt-ruby", "~> 3.1.2"
@@ -1,225 +0,0 @@
1
- GIT
2
- remote: git://github.com/pry/pry.git
3
- revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
- specs:
5
- pry (0.10.1)
6
- coderay (~> 1.1.0)
7
- method_source (~> 0.8.1)
8
- slop (~> 3.4)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionmailer (4.0.1)
14
- actionpack (= 4.0.1)
15
- mail (~> 2.5.4)
16
- actionpack (4.0.1)
17
- activesupport (= 4.0.1)
18
- builder (~> 3.1.0)
19
- erubis (~> 2.7.0)
20
- rack (~> 1.5.2)
21
- rack-test (~> 0.6.2)
22
- activemodel (4.0.1)
23
- activesupport (= 4.0.1)
24
- builder (~> 3.1.0)
25
- activerecord (4.0.1)
26
- activemodel (= 4.0.1)
27
- activerecord-deprecated_finders (~> 1.0.2)
28
- activesupport (= 4.0.1)
29
- arel (~> 4.0.0)
30
- activerecord-deprecated_finders (1.0.4)
31
- activeresource (4.0.0)
32
- activemodel (~> 4.0)
33
- activesupport (~> 4.0)
34
- rails-observers (~> 0.1.1)
35
- activesupport (4.0.1)
36
- i18n (~> 0.6, >= 0.6.4)
37
- minitest (~> 4.2)
38
- multi_json (~> 1.3)
39
- thread_safe (~> 0.1)
40
- tzinfo (~> 0.3.37)
41
- ansi (1.5.0)
42
- appraisal (2.1.0)
43
- bundler
44
- rake
45
- thor (>= 0.14.0)
46
- arel (4.0.2)
47
- bcrypt (3.1.10)
48
- bcrypt-ruby (3.1.5)
49
- bcrypt (>= 3.1.3)
50
- builder (3.1.4)
51
- byebug (5.0.0)
52
- columnize (= 0.9.0)
53
- coderay (1.1.0)
54
- coffee-rails (4.0.1)
55
- coffee-script (>= 2.2.0)
56
- railties (>= 4.0.0, < 5.0)
57
- coffee-script (2.4.1)
58
- coffee-script-source
59
- execjs
60
- coffee-script-source (1.9.1.1)
61
- columnize (0.9.0)
62
- diff-lcs (1.2.5)
63
- erubis (2.7.0)
64
- execjs (2.6.0)
65
- fssm (0.2.10)
66
- hashie (3.4.2)
67
- hike (1.2.3)
68
- i18n (0.7.0)
69
- jbuilder (1.5.3)
70
- activesupport (>= 3.0.0)
71
- multi_json (>= 1.2.0)
72
- jquery-rails (3.1.4)
73
- railties (>= 3.0, < 5.0)
74
- thor (>= 0.14, < 2.0)
75
- json (1.8.3)
76
- mail (2.5.4)
77
- mime-types (~> 1.16)
78
- treetop (~> 1.4.8)
79
- method_source (0.8.2)
80
- mime-types (1.25.1)
81
- minitest (4.7.5)
82
- minitest-reporters (0.14.24)
83
- ansi
84
- builder
85
- minitest (>= 2.12, < 5.0)
86
- powerbar
87
- multi_json (1.11.2)
88
- pg (0.18.3)
89
- polyglot (0.3.5)
90
- posix-spawn (0.3.11)
91
- powerbar (1.0.12)
92
- ansi (~> 1.5.0)
93
- hashie (>= 1.1.0)
94
- protected_attributes (1.1.3)
95
- activemodel (>= 4.0.1, < 5.0)
96
- pry-byebug (3.2.0)
97
- byebug (~> 5.0)
98
- pry (~> 0.10)
99
- pygments.rb (0.6.3)
100
- posix-spawn (~> 0.3.6)
101
- yajl-ruby (~> 1.2.0)
102
- rack (1.5.5)
103
- rack-test (0.6.3)
104
- rack (>= 1.0)
105
- rails (4.0.1)
106
- actionmailer (= 4.0.1)
107
- actionpack (= 4.0.1)
108
- activerecord (= 4.0.1)
109
- activesupport (= 4.0.1)
110
- bundler (>= 1.3.0, < 2.0)
111
- railties (= 4.0.1)
112
- sprockets-rails (~> 2.0.0)
113
- rails-observers (0.1.2)
114
- activemodel (~> 4.0)
115
- railties (4.0.1)
116
- actionpack (= 4.0.1)
117
- activesupport (= 4.0.1)
118
- rake (>= 0.8.7)
119
- thor (>= 0.18.1, < 2.0)
120
- rake (10.4.2)
121
- rdoc (4.2.0)
122
- redcarpet (3.3.2)
123
- rspec (3.4.0)
124
- rspec-core (~> 3.4.0)
125
- rspec-expectations (~> 3.4.0)
126
- rspec-mocks (~> 3.4.0)
127
- rspec-core (3.4.1)
128
- rspec-support (~> 3.4.0)
129
- rspec-expectations (3.4.0)
130
- diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.4.0)
132
- rspec-mocks (3.4.0)
133
- diff-lcs (>= 1.2.0, < 2.0)
134
- rspec-support (~> 3.4.0)
135
- rspec-rails (3.4.0)
136
- actionpack (>= 3.0, < 4.3)
137
- activesupport (>= 3.0, < 4.3)
138
- railties (>= 3.0, < 4.3)
139
- rspec-core (~> 3.4.0)
140
- rspec-expectations (~> 3.4.0)
141
- rspec-mocks (~> 3.4.0)
142
- rspec-support (~> 3.4.0)
143
- rspec-support (3.4.1)
144
- sass (3.2.19)
145
- sass-rails (4.0.5)
146
- railties (>= 4.0.0, < 5.0)
147
- sass (~> 3.2.2)
148
- sprockets (~> 2.8, < 3.0)
149
- sprockets-rails (~> 2.0)
150
- sdoc (0.4.1)
151
- json (~> 1.7, >= 1.7.7)
152
- rdoc (~> 4.0)
153
- shoulda-context (1.2.1)
154
- slop (3.6.0)
155
- spring (1.4.0)
156
- spring-commands-rspec (1.0.4)
157
- spring (>= 0.9.1)
158
- sprockets (2.12.4)
159
- hike (~> 1.2)
160
- multi_json (~> 1.0)
161
- rack (~> 1.0)
162
- tilt (~> 1.1, != 1.3.0)
163
- sprockets-rails (2.0.1)
164
- actionpack (>= 3.0)
165
- activesupport (>= 3.0)
166
- sprockets (~> 2.8)
167
- sqlite3 (1.3.10)
168
- thor (0.19.1)
169
- thread_safe (0.3.5)
170
- tilt (1.4.1)
171
- treetop (1.4.15)
172
- polyglot
173
- polyglot (>= 0.3.1)
174
- turbolinks (2.5.3)
175
- coffee-rails
176
- tzinfo (0.3.46)
177
- uglifier (2.7.2)
178
- execjs (>= 0.3.0)
179
- json (>= 1.8.0)
180
- yajl-ruby (1.2.1)
181
- yard (0.8.7.6)
182
- zeus (0.15.4)
183
- method_source (>= 0.6.7)
184
-
185
- PLATFORMS
186
- ruby
187
-
188
- DEPENDENCIES
189
- activerecord-jdbc-adapter
190
- activerecord-jdbcsqlite3-adapter
191
- activeresource (= 4.0.0)
192
- appraisal (~> 2.0)
193
- bcrypt-ruby (~> 3.1.2)
194
- bundler (~> 1.1)
195
- coffee-rails (~> 4.0.0)
196
- fssm
197
- jbuilder (~> 1.2)
198
- jdbc-sqlite3
199
- jquery-rails
200
- jruby-openssl
201
- minitest-reporters
202
- pg
203
- protected_attributes
204
- pry!
205
- pry-byebug
206
- pygments.rb
207
- rails (= 4.0.1)
208
- rake (~> 10.0)
209
- redcarpet
210
- rspec (~> 3.2)
211
- rspec-rails (>= 3.2.0, < 4)
212
- sass-rails (~> 4.0.0)
213
- sdoc
214
- shoulda-context (~> 1.2.0)
215
- spring
216
- spring-commands-rspec
217
- sqlite3
218
- therubyrhino
219
- turbolinks
220
- uglifier (>= 1.3.0)
221
- yard
222
- zeus
223
-
224
- BUNDLED WITH
225
- 1.11.1
data/gemfiles/4.1.gemfile DELETED
@@ -1,38 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.0"
6
- gem "bundler", "~> 1.1"
7
- gem "pry", :github => "pry/pry"
8
- gem "pry-byebug"
9
- gem "rake", "~> 10.0"
10
- gem "rspec", "~> 3.2"
11
- gem "zeus"
12
- gem "yard"
13
- gem "redcarpet"
14
- gem "pygments.rb"
15
- gem "fssm"
16
- gem "rspec-rails", ">= 3.2.0", "< 4"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "pg", :platform => :ruby
20
- gem "activerecord-jdbc-adapter", :platform => :jruby
21
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
22
- gem "jdbc-sqlite3", :platform => :jruby
23
- gem "jruby-openssl", :platform => :jruby
24
- gem "therubyrhino", :platform => :jruby
25
- gem "spring"
26
- gem "spring-commands-rspec"
27
- gem "uglifier", ">= 1.3.0"
28
- gem "coffee-rails", "~> 4.0.0"
29
- gem "jquery-rails"
30
- gem "turbolinks"
31
- gem "sdoc", "~> 0.4.0"
32
- gem "activeresource", "4.0.0"
33
- gem "protected_attributes", "~> 1.0.6"
34
- gem "minitest-reporters"
35
- gem "rails", "~> 4.1.0"
36
- gem "jbuilder", "~> 2.0"
37
- gem "sass-rails", "~> 4.0.3"
38
- gem "bcrypt", "~> 3.1.7"