origen 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ctags +0 -0
  3. data/bin/origen +165 -1
  4. data/bin/rgen +2 -0
  5. data/config/application.rb +141 -0
  6. data/config/commands.rb +72 -0
  7. data/config/development.rb +7 -0
  8. data/config/environment.rb +0 -0
  9. data/config/rgen.policy +7 -0
  10. data/config/rubocop/easy.yml +620 -0
  11. data/config/rubocop/easy_disabled.yml +271 -0
  12. data/config/rubocop/easy_enabled.yml +731 -0
  13. data/config/rubocop/strict.yml +620 -0
  14. data/config/rubocop/strict_disabled.yml +247 -0
  15. data/config/rubocop/strict_enabled.yml +755 -0
  16. data/config/users.rb +20 -0
  17. data/config/version.rb +1 -1
  18. data/helpers/url.rb +68 -0
  19. data/lib/c99/doc_interface.rb +56 -0
  20. data/lib/c99/j750_interface.rb +85 -0
  21. data/lib/c99/nvm.rb +89 -0
  22. data/lib/c99/target/mock2.rb +1 -0
  23. data/lib/c99/target/subdir/mock3.rb +1 -0
  24. data/lib/option_parser/optparse.rb +12 -0
  25. data/lib/origen/acronyms.rb +60 -0
  26. data/lib/origen/application/command_dispatcher.rb +12 -0
  27. data/lib/origen/application/configuration.rb +206 -0
  28. data/lib/origen/application/configuration_manager.rb +78 -0
  29. data/lib/origen/application/deployer.rb +367 -0
  30. data/lib/origen/application/environment.rb +186 -0
  31. data/lib/origen/application/lsf.rb +145 -0
  32. data/lib/origen/application/lsf_manager.rb +657 -0
  33. data/lib/origen/application/plugins_manager.rb +280 -0
  34. data/lib/origen/application/release.rb +359 -0
  35. data/lib/origen/application/runner.rb +246 -0
  36. data/lib/origen/application/statistics.rb +191 -0
  37. data/lib/origen/application/target.rb +374 -0
  38. data/lib/origen/application/version_tracker.rb +59 -0
  39. data/lib/origen/application/workspace_manager.rb +151 -0
  40. data/lib/origen/application.rb +746 -0
  41. data/lib/origen/bugs/bug.rb +36 -0
  42. data/lib/origen/bugs.rb +45 -0
  43. data/lib/origen/callbacks.rb +35 -0
  44. data/lib/origen/chip_mode.rb +118 -0
  45. data/lib/origen/chip_package.rb +461 -0
  46. data/lib/origen/client.rb +87 -0
  47. data/lib/origen/code_generators/actions.rb +258 -0
  48. data/lib/origen/code_generators/base.rb +57 -0
  49. data/lib/origen/code_generators/bundler.rb +17 -0
  50. data/lib/origen/code_generators/gem_setup.rb +49 -0
  51. data/lib/origen/code_generators/rake.rb +13 -0
  52. data/lib/origen/code_generators/rspec.rb +12 -0
  53. data/lib/origen/code_generators/semver.rb +39 -0
  54. data/lib/origen/code_generators/timever.rb +37 -0
  55. data/lib/origen/code_generators.rb +111 -0
  56. data/lib/origen/commands/add.rb +12 -0
  57. data/lib/origen/commands/compile.rb +62 -0
  58. data/lib/origen/commands/ctags.rb +9 -0
  59. data/lib/origen/commands/dispatch.rb +22 -0
  60. data/lib/origen/commands/environment.rb +11 -0
  61. data/lib/origen/commands/fetch.rb +63 -0
  62. data/lib/origen/commands/generate.rb +130 -0
  63. data/lib/origen/commands/interactive.rb +73 -0
  64. data/lib/origen/commands/lint.rb +82 -0
  65. data/lib/origen/commands/lsf.rb +93 -0
  66. data/lib/origen/commands/merge.rb +55 -0
  67. data/lib/origen/commands/modifications.rb +12 -0
  68. data/lib/origen/commands/new.rb +113 -0
  69. data/lib/origen/commands/plugin.rb +105 -0
  70. data/lib/origen/commands/program.rb +70 -0
  71. data/lib/origen/commands/rc.rb +442 -0
  72. data/lib/origen/commands/save.rb +56 -0
  73. data/lib/origen/commands/target.rb +27 -0
  74. data/lib/origen/commands/time.rb +127 -0
  75. data/lib/origen/commands/version.rb +17 -0
  76. data/lib/origen/commands/web.rb +221 -0
  77. data/lib/origen/commands.rb +272 -0
  78. data/lib/origen/commands_global.rb +76 -0
  79. data/lib/origen/controller.rb +94 -0
  80. data/lib/origen/core_ext/array.rb +23 -0
  81. data/lib/origen/core_ext/bignum.rb +36 -0
  82. data/lib/origen/core_ext/enumerable.rb +76 -0
  83. data/lib/origen/core_ext/fixnum.rb +46 -0
  84. data/lib/origen/core_ext/hash.rb +52 -0
  85. data/lib/origen/core_ext/module.rb +14 -0
  86. data/lib/origen/core_ext/numeric.rb +126 -0
  87. data/lib/origen/core_ext/object.rb +13 -0
  88. data/lib/origen/core_ext/range.rb +7 -0
  89. data/lib/origen/core_ext/string.rb +124 -0
  90. data/lib/origen/core_ext.rb +10 -0
  91. data/lib/origen/database/key_value_store.rb +111 -0
  92. data/lib/origen/database/key_value_stores.rb +108 -0
  93. data/lib/origen/database.rb +6 -0
  94. data/lib/origen/encodings.rb +102 -0
  95. data/lib/origen/features/feature.rb +22 -0
  96. data/lib/origen/features.rb +104 -0
  97. data/lib/origen/file_handler.rb +429 -0
  98. data/lib/origen/generator/comparator.rb +56 -0
  99. data/lib/origen/generator/compiler.rb +277 -0
  100. data/lib/origen/generator/flow.rb +49 -0
  101. data/lib/origen/generator/job.rb +131 -0
  102. data/lib/origen/generator/pattern.rb +356 -0
  103. data/lib/origen/generator/pattern_finder.rb +155 -0
  104. data/lib/origen/generator/pattern_iterator.rb +55 -0
  105. data/lib/origen/generator/renderer.rb +113 -0
  106. data/lib/origen/generator/resources.rb +40 -0
  107. data/lib/origen/generator/stage.rb +89 -0
  108. data/lib/origen/generator.rb +85 -0
  109. data/lib/origen/global_methods.rb +205 -0
  110. data/lib/origen/import_manager.rb +596 -0
  111. data/lib/origen/location/base.rb +116 -0
  112. data/lib/origen/location/map.rb +83 -0
  113. data/lib/origen/location.rb +6 -0
  114. data/lib/origen/log.rb +217 -0
  115. data/lib/origen/logger_methods.rb +56 -0
  116. data/lib/origen/mode.rb +61 -0
  117. data/lib/origen/model.rb +267 -0
  118. data/lib/origen/model_initializer.rb +45 -0
  119. data/lib/origen/nvm/block_array.rb +72 -0
  120. data/lib/origen/nvm.rb +6 -0
  121. data/lib/origen/parameters/live.rb +22 -0
  122. data/lib/origen/parameters/missing.rb +28 -0
  123. data/lib/origen/parameters/set.rb +144 -0
  124. data/lib/origen/parameters.rb +107 -0
  125. data/lib/origen/pdm.rb +218 -0
  126. data/lib/origen/pins/function_proxy.rb +36 -0
  127. data/lib/origen/pins/ground_pin.rb +6 -0
  128. data/lib/origen/pins/pin.rb +860 -0
  129. data/lib/origen/pins/pin_bank.rb +349 -0
  130. data/lib/origen/pins/pin_clock.rb +124 -0
  131. data/lib/origen/pins/pin_collection.rb +492 -0
  132. data/lib/origen/pins/pin_common.rb +206 -0
  133. data/lib/origen/pins/port.rb +268 -0
  134. data/lib/origen/pins/power_pin.rb +30 -0
  135. data/lib/origen/pins.rb +696 -0
  136. data/lib/origen/registers/bit.rb +562 -0
  137. data/lib/origen/registers/bit_collection.rb +787 -0
  138. data/lib/origen/registers/container.rb +288 -0
  139. data/lib/origen/registers/domain.rb +16 -0
  140. data/lib/origen/registers/reg.rb +1406 -0
  141. data/lib/origen/registers/reg_collection.rb +24 -0
  142. data/lib/origen/registers.rb +652 -0
  143. data/lib/origen/regression_manager.rb +251 -0
  144. data/lib/origen/remote_manager.rb +340 -0
  145. data/lib/origen/revision_control/base.rb +257 -0
  146. data/lib/origen/revision_control/design_sync.rb +276 -0
  147. data/lib/origen/revision_control/git.rb +243 -0
  148. data/lib/origen/revision_control/subversion.rb +6 -0
  149. data/lib/origen/revision_control.rb +44 -0
  150. data/lib/origen/ruby_version_check.rb +131 -0
  151. data/lib/origen/site_config.rb +61 -0
  152. data/lib/origen/specs/checkers.rb +103 -0
  153. data/lib/origen/specs/creation_info.rb +17 -0
  154. data/lib/origen/specs/doc_resource.rb +91 -0
  155. data/lib/origen/specs/exhibit.rb +17 -0
  156. data/lib/origen/specs/mode_select.rb +16 -0
  157. data/lib/origen/specs/note.rb +17 -0
  158. data/lib/origen/specs/override.rb +21 -0
  159. data/lib/origen/specs/power_supply.rb +13 -0
  160. data/lib/origen/specs/spec.rb +226 -0
  161. data/lib/origen/specs/version_history.rb +14 -0
  162. data/lib/origen/specs.rb +552 -0
  163. data/lib/origen/sub_blocks.rb +298 -0
  164. data/lib/origen/tester/api.rb +277 -0
  165. data/lib/origen/tester/bdm/bdm.rb +25 -0
  166. data/lib/origen/tester/command_based_tester.rb +46 -0
  167. data/lib/origen/tester/doc/doc.rb +226 -0
  168. data/lib/origen/tester/doc/generator/flow.rb +71 -0
  169. data/lib/origen/tester/doc/generator/flow_line.rb +203 -0
  170. data/lib/origen/tester/doc/generator/test.rb +68 -0
  171. data/lib/origen/tester/doc/generator/test_group.rb +66 -0
  172. data/lib/origen/tester/doc/generator/tests.rb +47 -0
  173. data/lib/origen/tester/doc/generator.rb +126 -0
  174. data/lib/origen/tester/doc/model.rb +162 -0
  175. data/lib/origen/tester/generator/flow_control_api.rb +606 -0
  176. data/lib/origen/tester/generator/identity_map.rb +25 -0
  177. data/lib/origen/tester/generator/placeholder.rb +13 -0
  178. data/lib/origen/tester/generator/test_numberer.rb +25 -0
  179. data/lib/origen/tester/generator.rb +271 -0
  180. data/lib/origen/tester/interface.rb +154 -0
  181. data/lib/origen/tester/j750/files.rb +45 -0
  182. data/lib/origen/tester/j750/generator/flow.rb +123 -0
  183. data/lib/origen/tester/j750/generator/flow_line.rb +288 -0
  184. data/lib/origen/tester/j750/generator/patgroup.rb +111 -0
  185. data/lib/origen/tester/j750/generator/patgroups.rb +41 -0
  186. data/lib/origen/tester/j750/generator/patset.rb +111 -0
  187. data/lib/origen/tester/j750/generator/patsets.rb +41 -0
  188. data/lib/origen/tester/j750/generator/templates/flow.txt.erb +9 -0
  189. data/lib/origen/tester/j750/generator/templates/instances.txt.erb +16 -0
  190. data/lib/origen/tester/j750/generator/templates/patgroups.txt.erb +8 -0
  191. data/lib/origen/tester/j750/generator/templates/patsets.txt.erb +10 -0
  192. data/lib/origen/tester/j750/generator/test_instance.rb +846 -0
  193. data/lib/origen/tester/j750/generator/test_instance_group.rb +60 -0
  194. data/lib/origen/tester/j750/generator/test_instances.rb +182 -0
  195. data/lib/origen/tester/j750/generator.rb +203 -0
  196. data/lib/origen/tester/j750/j750.rb +845 -0
  197. data/lib/origen/tester/j750/j750_hpt.rb +35 -0
  198. data/lib/origen/tester/j750/parser/ac_spec.rb +11 -0
  199. data/lib/origen/tester/j750/parser/ac_specs.rb +0 -0
  200. data/lib/origen/tester/j750/parser/dc_spec.rb +36 -0
  201. data/lib/origen/tester/j750/parser/dc_specs.rb +50 -0
  202. data/lib/origen/tester/j750/parser/descriptions.rb +340 -0
  203. data/lib/origen/tester/j750/parser/flow.rb +111 -0
  204. data/lib/origen/tester/j750/parser/flow_line.rb +207 -0
  205. data/lib/origen/tester/j750/parser/flows.rb +23 -0
  206. data/lib/origen/tester/j750/parser/pattern_set.rb +94 -0
  207. data/lib/origen/tester/j750/parser/pattern_sets.rb +33 -0
  208. data/lib/origen/tester/j750/parser/test_instance.rb +322 -0
  209. data/lib/origen/tester/j750/parser/test_instances.rb +26 -0
  210. data/lib/origen/tester/j750/parser/timeset.rb +15 -0
  211. data/lib/origen/tester/j750/parser/timesets.rb +0 -0
  212. data/lib/origen/tester/j750/parser.rb +104 -0
  213. data/lib/origen/tester/jlink/jlink.rb +33 -0
  214. data/lib/origen/tester/parser/description_lookup.rb +64 -0
  215. data/lib/origen/tester/parser/searchable_array.rb +32 -0
  216. data/lib/origen/tester/parser/searchable_hash.rb +32 -0
  217. data/lib/origen/tester/parser.rb +24 -0
  218. data/lib/origen/tester/time.rb +338 -0
  219. data/lib/origen/tester/timing.rb +253 -0
  220. data/lib/origen/tester/ultraflex/files.rb +45 -0
  221. data/lib/origen/tester/ultraflex/generator/flow.rb +119 -0
  222. data/lib/origen/tester/ultraflex/generator/flow_line.rb +269 -0
  223. data/lib/origen/tester/ultraflex/generator/patgroup.rb +111 -0
  224. data/lib/origen/tester/ultraflex/generator/patgroups.rb +41 -0
  225. data/lib/origen/tester/ultraflex/generator/patset.rb +111 -0
  226. data/lib/origen/tester/ultraflex/generator/patsets.rb +41 -0
  227. data/lib/origen/tester/ultraflex/generator/templates/flow.txt.erb +9 -0
  228. data/lib/origen/tester/ultraflex/generator/templates/instances.txt.erb +16 -0
  229. data/lib/origen/tester/ultraflex/generator/templates/patgroups.txt.erb +8 -0
  230. data/lib/origen/tester/ultraflex/generator/templates/patsets.txt.erb +10 -0
  231. data/lib/origen/tester/ultraflex/generator/test_instance.rb +622 -0
  232. data/lib/origen/tester/ultraflex/generator/test_instance_group.rb +60 -0
  233. data/lib/origen/tester/ultraflex/generator/test_instances.rb +174 -0
  234. data/lib/origen/tester/ultraflex/generator.rb +200 -0
  235. data/lib/origen/tester/ultraflex/parser/ac_spec.rb +11 -0
  236. data/lib/origen/tester/ultraflex/parser/ac_specs.rb +0 -0
  237. data/lib/origen/tester/ultraflex/parser/dc_spec.rb +36 -0
  238. data/lib/origen/tester/ultraflex/parser/dc_specs.rb +50 -0
  239. data/lib/origen/tester/ultraflex/parser/descriptions.rb +342 -0
  240. data/lib/origen/tester/ultraflex/parser/flow.rb +111 -0
  241. data/lib/origen/tester/ultraflex/parser/flow_line.rb +207 -0
  242. data/lib/origen/tester/ultraflex/parser/flows.rb +23 -0
  243. data/lib/origen/tester/ultraflex/parser/pattern_set.rb +94 -0
  244. data/lib/origen/tester/ultraflex/parser/pattern_sets.rb +33 -0
  245. data/lib/origen/tester/ultraflex/parser/test_instance.rb +262 -0
  246. data/lib/origen/tester/ultraflex/parser/test_instances.rb +26 -0
  247. data/lib/origen/tester/ultraflex/parser/timeset.rb +15 -0
  248. data/lib/origen/tester/ultraflex/parser/timesets.rb +0 -0
  249. data/lib/origen/tester/ultraflex/parser.rb +104 -0
  250. data/lib/origen/tester/ultraflex/ultraflex.rb +759 -0
  251. data/lib/origen/tester/v93k/generator/flow.rb +63 -0
  252. data/lib/origen/tester/v93k/generator/flow_node/print.rb +10 -0
  253. data/lib/origen/tester/v93k/generator/flow_node.rb +17 -0
  254. data/lib/origen/tester/v93k/generator/pattern.rb +16 -0
  255. data/lib/origen/tester/v93k/generator/pattern_master.rb +54 -0
  256. data/lib/origen/tester/v93k/generator/templates/_test_method.txt.erb +6 -0
  257. data/lib/origen/tester/v93k/generator/templates/_test_suite.txt.erb +11 -0
  258. data/lib/origen/tester/v93k/generator/templates/template.flow.erb +121 -0
  259. data/lib/origen/tester/v93k/generator/templates/template.pmfl.erb +9 -0
  260. data/lib/origen/tester/v93k/generator/test_function.rb +103 -0
  261. data/lib/origen/tester/v93k/generator/test_functions.rb +79 -0
  262. data/lib/origen/tester/v93k/generator/test_method.rb +46 -0
  263. data/lib/origen/tester/v93k/generator/test_methods.rb +75 -0
  264. data/lib/origen/tester/v93k/generator/test_suite.rb +54 -0
  265. data/lib/origen/tester/v93k/generator/test_suites.rb +65 -0
  266. data/lib/origen/tester/v93k/generator.rb +80 -0
  267. data/lib/origen/tester/v93k/v93k.rb +420 -0
  268. data/lib/origen/tester/vector.rb +86 -0
  269. data/lib/origen/tester/vector_generator.rb +633 -0
  270. data/lib/origen/tester/vector_pipeline.rb +150 -0
  271. data/lib/origen/tester.rb +56 -0
  272. data/lib/origen/top_level.rb +134 -0
  273. data/lib/origen/users/ldap.rb +65 -0
  274. data/lib/origen/users/user.rb +149 -0
  275. data/lib/origen/users.rb +30 -0
  276. data/lib/origen/utility/block_args.rb +93 -0
  277. data/lib/origen/utility/csv_data.rb +110 -0
  278. data/lib/origen/utility/design_sync.rb +494 -0
  279. data/lib/origen/utility/diff.rb +158 -0
  280. data/lib/origen/utility/input_capture.rb +121 -0
  281. data/lib/origen/utility/mailer.rb +143 -0
  282. data/lib/origen/utility/s_record.rb +205 -0
  283. data/lib/origen/utility/time_and_date.rb +30 -0
  284. data/lib/origen/utility.rb +12 -0
  285. data/lib/origen/version_checker.rb +117 -0
  286. data/lib/origen/version_string.rb +356 -0
  287. data/lib/origen.rb +648 -0
  288. data/lib/tasks/gem.rake +27 -22
  289. data/origen_site_config.yml +36 -0
  290. data/source_setup +17 -0
  291. data/spec/format/rgen_formatter.rb +14 -0
  292. data/templates/api_doc/README.txt.erb +24 -0
  293. data/templates/code_generators/gemfile_app.rb +4 -0
  294. data/templates/code_generators/gemfile_plugin.rb +6 -0
  295. data/templates/code_generators/gemspec.rb +33 -0
  296. data/templates/code_generators/rakefile.rb +10 -0
  297. data/templates/code_generators/spec_helper.rb +49 -0
  298. data/templates/code_generators/version.rb +8 -0
  299. data/templates/code_generators/version_time.rb +3 -0
  300. data/templates/git/gitignore.erb +33 -0
  301. data/templates/j750/_vt_flow.txt.erb +8 -0
  302. data/templates/j750/_vt_instances.txt.erb +4 -0
  303. data/templates/j750/program_sheet.txt.erb +9 -0
  304. data/templates/nanoc/Rules +74 -0
  305. data/templates/nanoc/config.yaml +77 -0
  306. data/templates/nanoc/content/favicon.ico +0 -0
  307. data/templates/nanoc/layouts/bootstrap.html.erb +63 -0
  308. data/templates/nanoc/layouts/bootstrap3.html.erb +71 -0
  309. data/templates/nanoc/layouts/freescale.html.erb +79 -0
  310. data/templates/nanoc/lib/bootstrap_filter.rb +49 -0
  311. data/templates/nanoc/lib/codeblocks_filter.rb +41 -0
  312. data/templates/nanoc/lib/default.rb +2 -0
  313. data/templates/nanoc/lib/gzip_filter.rb +16 -0
  314. data/templates/nanoc/lib/haml_code_filter.rb +41 -0
  315. data/templates/nanoc/lib/helpers.rb +1 -0
  316. data/templates/nanoc/lib/search_filter.rb +62 -0
  317. data/templates/nanoc_dynamic/content/search.js.erb +92 -0
  318. data/templates/shared/web/_logo.html +10 -0
  319. data/templates/test/_inline_sub.txt.erb +2 -0
  320. data/templates/test/environment.txt.erb +1 -0
  321. data/templates/test/inline.txt.erb +11 -0
  322. data/templates/test/inspections.txt.erb +19 -0
  323. data/templates/test/set1/_sub1.txt.erb +12 -0
  324. data/templates/test/set1/_sub4.txt.erb +1 -0
  325. data/templates/test/set1/_sub5.txt.erb +1 -0
  326. data/templates/test/set1/main.txt.erb +53 -0
  327. data/templates/test/set1/sub_dir/_sub2.txt.erb +20 -0
  328. data/templates/test/set1/sub_dir/_sub3.txt.erb +12 -0
  329. data/templates/test/set1/sub_dir/main2.txt.erb +4 -0
  330. data/templates/test/set2/template_with_no_erb_1.txt +9 -0
  331. data/templates/test/set2/template_with_no_erb_2.txt +9 -0
  332. data/templates/test/set3/_layout.html.erb +4 -0
  333. data/templates/test/set3/content.html.erb +6 -0
  334. data/templates/time/filter.rb.erb +15 -0
  335. data/templates/time/rules.rb.erb +45 -0
  336. metadata +639 -5
@@ -0,0 +1,755 @@
1
+ # These are all the cops that are enabled in the strict configuration.
2
+
3
+ Style/AccessModifierIndentation:
4
+ Description: Check indentation of private/protected visibility modifiers.
5
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
6
+ Enabled: true
7
+
8
+ Style/Alias:
9
+ Description: 'Use alias_method instead of alias.'
10
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
11
+ Enabled: true
12
+
13
+ Style/AlignArray:
14
+ Description: >-
15
+ Align the elements of an array literal if they span more than
16
+ one line.
17
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays'
18
+ Enabled: true
19
+
20
+ Style/AlignHash:
21
+ Description: >-
22
+ Align the elements of a hash literal if they span more than
23
+ one line.
24
+ Enabled: true
25
+
26
+ Style/AlignParameters:
27
+ Description: >-
28
+ Align the parameters of a method call if they span more
29
+ than one line.
30
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-double-indent'
31
+ Enabled: true
32
+
33
+ Style/AndOr:
34
+ Description: 'Use &&/|| instead of and/or.'
35
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-and-or-or'
36
+ Enabled: true
37
+
38
+ Style/ArrayJoin:
39
+ Description: 'Use Array#join instead of Array#*.'
40
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
41
+ Enabled: true
42
+
43
+ Style/AsciiComments:
44
+ Description: 'Use only ascii symbols in comments.'
45
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
46
+ Enabled: true
47
+
48
+ Style/AsciiIdentifiers:
49
+ Description: 'Use only ascii symbols in identifiers.'
50
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
51
+ Enabled: true
52
+
53
+ Style/Attr:
54
+ Description: 'Checks for uses of Module#attr.'
55
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
56
+ Enabled: true
57
+
58
+ Style/BeginBlock:
59
+ Description: 'Avoid the use of BEGIN blocks.'
60
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-BEGIN-blocks'
61
+ Enabled: true
62
+
63
+ Style/BarePercentLiterals:
64
+ Description: 'Checks if usage of %() or %Q() matches configuration.'
65
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q-shorthand'
66
+ Enabled: true
67
+
68
+ Style/BlockComments:
69
+ Description: 'Do not use block comments.'
70
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-block-comments'
71
+ Enabled: true
72
+
73
+ Style/BlockEndNewline:
74
+ Description: 'Put end statement of multiline block on its own line.'
75
+ Enabled: true
76
+
77
+ Style/BracesAroundHashParameters:
78
+ Description: 'Enforce braces style around hash parameters.'
79
+ Enabled: true
80
+
81
+ Style/CaseEquality:
82
+ Description: 'Avoid explicit use of the case equality operator(===).'
83
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-case-equality'
84
+ Enabled: true
85
+
86
+ Style/CharacterLiteral:
87
+ Description: 'Checks for uses of character literals.'
88
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
89
+ Enabled: true
90
+
91
+ Style/ClassAndModuleChildren:
92
+ Description: 'Checks style of children classes and modules.'
93
+ Enabled: true
94
+
95
+ Style/ClassCheck:
96
+ Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
97
+ Enabled: true
98
+
99
+ Style/ClassMethods:
100
+ Description: 'Use self when defining module/class methods.'
101
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#def-self-singletons'
102
+ Enabled: true
103
+
104
+ Style/ColonMethodCall:
105
+ Description: 'Do not use :: for method call.'
106
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
107
+ Enabled: true
108
+
109
+ Style/CommentAnnotation:
110
+ Description: >-
111
+ Checks formatting of special comments
112
+ (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
113
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
114
+ Enabled: true
115
+
116
+ Style/CommentIndentation:
117
+ Description: 'Indentation of comments.'
118
+ Enabled: true
119
+
120
+ Style/ConstantName:
121
+ Description: 'Constants should use SCREAMING_SNAKE_CASE.'
122
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#screaming-snake-case'
123
+ Enabled: true
124
+
125
+ Style/DefWithParentheses:
126
+ Description: 'Use def with parentheses when there are arguments.'
127
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
128
+ Enabled: true
129
+
130
+ Style/DeprecatedHashMethods:
131
+ Description: 'Checks for use of deprecated Hash methods.'
132
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-key'
133
+ Enabled: true
134
+
135
+ Style/DotPosition:
136
+ Description: 'Checks the position of the dot in multi-line method calls.'
137
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
138
+ Enabled: true
139
+
140
+ Style/ElseAlignment:
141
+ Description: 'Align elses and elsifs correctly.'
142
+ Enabled: true
143
+
144
+ Style/EmptyLineBetweenDefs:
145
+ Description: 'Use empty lines between defs.'
146
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#empty-lines-between-methods'
147
+ Enabled: true
148
+
149
+ Style/EmptyLines:
150
+ Description: "Don't use several empty lines in a row."
151
+ Enabled: true
152
+
153
+ Style/EmptyLinesAroundAccessModifier:
154
+ Description: "Keep blank lines around access modifiers."
155
+ Enabled: true
156
+
157
+ #Style/EmptyLinesAroundBlockBody:
158
+ # Description: "Keeps track of empty lines around block bodies."
159
+ # Enabled: true
160
+
161
+ Style/EmptyLinesAroundClassBody:
162
+ Description: "Keeps track of empty lines around class bodies."
163
+ Enabled: true
164
+
165
+ Style/EmptyLinesAroundModuleBody:
166
+ Description: "Keeps track of empty lines around module bodies."
167
+ Enabled: true
168
+
169
+ Style/EmptyLinesAroundMethodBody:
170
+ Description: "Keeps track of empty lines around method bodies."
171
+ Enabled: true
172
+
173
+ Style/EmptyLiteral:
174
+ Description: 'Prefer literals to Array.new/Hash.new/String.new.'
175
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
176
+ Enabled: true
177
+
178
+ Style/EndBlock:
179
+ Description: 'Avoid the use of END blocks.'
180
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-END-blocks'
181
+ Enabled: true
182
+
183
+ Style/EndOfLine:
184
+ Description: 'Use Unix-style line endings.'
185
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#crlf'
186
+ Enabled: true
187
+
188
+ Style/EvenOdd:
189
+ Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
190
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
191
+ Enabled: true
192
+
193
+ Style/FileName:
194
+ Description: 'Use snake_case for source file names.'
195
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
196
+ Enabled: true
197
+
198
+ Style/FlipFlop:
199
+ Description: 'Checks for flip flops'
200
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
201
+ Enabled: true
202
+
203
+ Style/For:
204
+ Description: 'Checks use of for or each in multiline loops.'
205
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-for-loops'
206
+ Enabled: true
207
+
208
+ Style/HashSyntax:
209
+ Description: >-
210
+ Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
211
+ { :a => 1, :b => 2 }.
212
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-literals'
213
+ Enabled: true
214
+
215
+ Style/IfWithSemicolon:
216
+ Description: 'Do not use if x; .... Use the ternary operator instead.'
217
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
218
+ Enabled: true
219
+
220
+ Style/IndentationConsistency:
221
+ Description: 'Keep indentation straight.'
222
+ Enabled: true
223
+
224
+ Style/IndentationWidth:
225
+ Description: 'Use 2 spaces for indentation.'
226
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
227
+ Enabled: true
228
+
229
+ Style/IndentArray:
230
+ Description: >-
231
+ Checks the indentation of the first element in an array
232
+ literal.
233
+ Enabled: true
234
+
235
+ Style/IndentHash:
236
+ Description: 'Checks the indentation of the first key in a hash literal.'
237
+ Enabled: true
238
+
239
+ Style/InfiniteLoop:
240
+ Description: 'Use Kernel#loop for infinite loops.'
241
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#infinite-loop'
242
+ Enabled: true
243
+
244
+ Style/Lambda:
245
+ Description: 'Use the new lambda literal syntax for single-line blocks.'
246
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#lambda-multi-line'
247
+ Enabled: true
248
+
249
+ Style/LambdaCall:
250
+ Description: 'Use lambda.call(...) instead of lambda.(...).'
251
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
252
+ Enabled: true
253
+
254
+ Style/LeadingCommentSpace:
255
+ Description: 'Comments should start with a space.'
256
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-space'
257
+ Enabled: true
258
+
259
+ Style/LineEndConcatenation:
260
+ Description: >-
261
+ Use \ instead of + or << to concatenate two string literals at
262
+ line end.
263
+ Enabled: true
264
+
265
+ Style/MethodCallParentheses:
266
+ Description: 'Do not use parentheses for method calls with no arguments.'
267
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-args-no-parens'
268
+ Enabled: true
269
+
270
+ Style/MethodDefParentheses:
271
+ Description: >-
272
+ Checks if the method definitions have or don't have
273
+ parentheses.
274
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
275
+ Enabled: true
276
+
277
+ Style/MethodName:
278
+ Description: 'Use the configured style when naming methods.'
279
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
280
+ Enabled: true
281
+
282
+ Style/ModuleFunction:
283
+ Description: 'Checks for usage of `extend self` in modules.'
284
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
285
+ Enabled: true
286
+
287
+ Style/MultilineBlockLayout:
288
+ Description: 'Ensures newlines after multiline block do statements.'
289
+ Enabled: true
290
+
291
+ Style/MultilineIfThen:
292
+ Description: 'Do not use then for multi-line if/unless.'
293
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-then'
294
+ Enabled: true
295
+
296
+ Style/MultilineOperationIndentation:
297
+ Description: >-
298
+ Checks indentation of binary operations that span more than
299
+ one line.
300
+ Enabled: true
301
+
302
+ Style/MultilineTernaryOperator:
303
+ Description: >-
304
+ Avoid multi-line ?: (the ternary operator);
305
+ use if/unless instead.
306
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-ternary'
307
+ Enabled: true
308
+
309
+ Style/NegatedIf:
310
+ Description: >-
311
+ Favor unless over if for negative conditions
312
+ (or control flow or).
313
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
314
+ Enabled: true
315
+
316
+ Style/NegatedWhile:
317
+ Description: 'Favor until over while for negative conditions.'
318
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
319
+ Enabled: true
320
+
321
+ Style/NestedTernaryOperator:
322
+ Description: 'Use one expression per branch in a ternary operator.'
323
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-ternary'
324
+ Enabled: true
325
+
326
+ Style/NilComparison:
327
+ Description: 'Prefer x.nil? to x == nil.'
328
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
329
+ Enabled: true
330
+
331
+ Style/NonNilCheck:
332
+ Description: 'Checks for redundant nil checks.'
333
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-non-nil-checks'
334
+ Enabled: true
335
+
336
+ Style/Not:
337
+ Description: 'Use ! instead of not.'
338
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
339
+ Enabled: true
340
+
341
+ Style/NumericLiterals:
342
+ Description: >-
343
+ Add underscores to large numeric literals to improve their
344
+ readability.
345
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
346
+ Enabled: true
347
+
348
+ Style/OneLineConditional:
349
+ Description: >-
350
+ Favor the ternary operator(?:) over
351
+ if/then/else/end constructs.
352
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
353
+ Enabled: true
354
+
355
+ Style/ParenthesesAroundCondition:
356
+ Description: >-
357
+ Don't use parentheses around the condition of an
358
+ if/unless/while.
359
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-parens-if'
360
+ Enabled: true
361
+
362
+ Style/PercentLiteralDelimiters:
363
+ Description: 'Use `%`-literal delimiters consistently'
364
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
365
+ Enabled: true
366
+
367
+ Style/PercentQLiterals:
368
+ Description: 'Checks if uses of %Q/%q match the configured preference.'
369
+ Enabled: true
370
+
371
+ Style/PerlBackrefs:
372
+ Description: 'Avoid Perl-style regex back references.'
373
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
374
+ Enabled: true
375
+
376
+ Style/Proc:
377
+ Description: 'Use proc instead of Proc.new.'
378
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
379
+ Enabled: true
380
+
381
+ Style/RaiseArgs:
382
+ Description: 'Checks the arguments passed to raise/fail.'
383
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
384
+ Enabled: true
385
+
386
+ Style/RedundantBegin:
387
+ Description: "Don't use begin blocks when they are not needed."
388
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#begin-implicit'
389
+ Enabled: true
390
+
391
+ Style/RedundantException:
392
+ Description: "Checks for an obsolete RuntimeException argument in raise/fail."
393
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-runtimeerror'
394
+ Enabled: true
395
+
396
+ Style/RedundantReturn:
397
+ Description: "Don't use return where it's not required."
398
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-return'
399
+ Enabled: true
400
+
401
+ Style/RedundantSelf:
402
+ Description: "Don't use self where it's not needed."
403
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-self-unless-required'
404
+ Enabled: true
405
+
406
+ Style/RescueModifier:
407
+ Description: 'Avoid using rescue in its modifier form.'
408
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-rescue-modifiers'
409
+ Enabled: true
410
+
411
+ Style/SignalException:
412
+ Description: 'Checks for proper usage of fail and raise.'
413
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
414
+ Enabled: true
415
+
416
+ Style/SingleLineBlockParams:
417
+ Description: 'Enforces the names of some block params.'
418
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#reduce-blocks'
419
+ Enabled: true
420
+
421
+ Style/SingleLineMethods:
422
+ Description: 'Avoid single-line methods.'
423
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
424
+ Enabled: true
425
+
426
+ Style/SingleSpaceBeforeFirstArg:
427
+ Description: >-
428
+ Checks that exactly one space is used between a method name
429
+ and the first argument for method calls without parentheses.
430
+ Enabled: true
431
+
432
+ Style/SpaceAfterColon:
433
+ Description: 'Use spaces after colons.'
434
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
435
+ Enabled: true
436
+
437
+ Style/SpaceAfterComma:
438
+ Description: 'Use spaces after commas.'
439
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
440
+ Enabled: true
441
+
442
+ Style/SpaceAfterControlKeyword:
443
+ Description: 'Use spaces after if/elsif/unless/while/until/case/when.'
444
+ Enabled: true
445
+
446
+ Style/SpaceAfterMethodName:
447
+ Description: >-
448
+ Do not put a space between a method name and the opening
449
+ parenthesis in a method definition.
450
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
451
+ Enabled: true
452
+
453
+ Style/SpaceAfterNot:
454
+ Description: Tracks redundant space after the ! operator.
455
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-bang'
456
+ Enabled: true
457
+
458
+ Style/SpaceAfterSemicolon:
459
+ Description: 'Use spaces after semicolons.'
460
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
461
+ Enabled: true
462
+
463
+ Style/SpaceBeforeBlockBraces:
464
+ Description: >-
465
+ Checks that the left block brace has or doesn't have space
466
+ before it.
467
+ Enabled: true
468
+
469
+ Style/SpaceBeforeComma:
470
+ Description: 'No spaces before commas.'
471
+ Enabled: true
472
+
473
+ Style/SpaceBeforeComment:
474
+ Description: >-
475
+ Checks for missing space between code and a comment on the
476
+ same line.
477
+ Enabled: true
478
+
479
+ Style/SpaceBeforeSemicolon:
480
+ Description: 'No spaces before semicolons.'
481
+ Enabled: true
482
+
483
+ Style/SpaceInsideBlockBraces:
484
+ Description: >-
485
+ Checks that block braces have or don't have surrounding space.
486
+ For blocks taking parameters, checks that the left brace has
487
+ or doesn't have trailing space.
488
+ Enabled: true
489
+
490
+ Style/SpaceAroundEqualsInParameterDefault:
491
+ Description: >-
492
+ Checks that the equals signs in parameter default assignments
493
+ have or don't have surrounding space depending on
494
+ configuration.
495
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-around-equals'
496
+ Enabled: true
497
+
498
+ Style/SpaceAroundOperators:
499
+ Description: 'Use spaces around operators.'
500
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
501
+ Enabled: true
502
+
503
+ Style/SpaceBeforeModifierKeyword:
504
+ Description: 'Put a space before the modifier keyword.'
505
+ Enabled: true
506
+
507
+ Style/SpaceInsideBrackets:
508
+ Description: 'No spaces after [ or before ].'
509
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
510
+ Enabled: true
511
+
512
+ Style/SpaceInsideHashLiteralBraces:
513
+ Description: "Use spaces inside hash literal braces - or don't."
514
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
515
+ Enabled: true
516
+
517
+ Style/SpaceInsideParens:
518
+ Description: 'No spaces after ( or before ).'
519
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
520
+ Enabled: true
521
+
522
+ Style/SpaceInsideRangeLiteral:
523
+ Description: 'No spaces inside range literals.'
524
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-inside-range-literals'
525
+ Enabled: true
526
+
527
+ Style/SpecialGlobalVars:
528
+ Description: 'Avoid Perl-style global variables.'
529
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
530
+ Enabled: true
531
+
532
+ Style/StringLiterals:
533
+ Description: 'Checks if uses of quotes match the configured preference.'
534
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
535
+ Enabled: true
536
+
537
+ Style/StringLiteralsInInterpolation:
538
+ Description: >-
539
+ Checks if uses of quotes inside expressions in interpolated
540
+ strings match the configured preference.
541
+ Enabled: true
542
+
543
+ Style/SymbolProc:
544
+ Description: 'Use symbols as procs instead of blocks when possible.'
545
+ Enabled: true
546
+
547
+ Style/Tab:
548
+ Description: 'No hard tabs.'
549
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
550
+ Enabled: true
551
+
552
+ Style/TrailingBlankLines:
553
+ Description: 'Checks trailing blank lines and final newline.'
554
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#newline-eof'
555
+ Enabled: true
556
+
557
+ Style/TrailingComma:
558
+ Description: 'Checks for trailing comma in parameter lists and literals.'
559
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
560
+ Enabled: true
561
+
562
+ Style/TrailingWhitespace:
563
+ Description: 'Avoid trailing whitespace.'
564
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-whitespace'
565
+ Enabled: true
566
+
567
+ Style/UnlessElse:
568
+ Description: >-
569
+ Do not use unless with else. Rewrite these with the positive
570
+ case first.
571
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-else-with-unless'
572
+ Enabled: true
573
+
574
+ Style/UnneededCapitalW:
575
+ Description: 'Checks for %W when interpolation is not needed.'
576
+ Enabled: true
577
+
578
+ Style/UnneededPercentQ:
579
+ Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
580
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q'
581
+ Enabled: true
582
+
583
+ Style/VariableInterpolation:
584
+ Description: >-
585
+ Don't interpolate global, instance and class variables
586
+ directly in strings.
587
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
588
+ Enabled: true
589
+
590
+ Style/VariableName:
591
+ Description: 'Use the configured style when naming variables.'
592
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
593
+ Enabled: true
594
+
595
+ Style/WhenThen:
596
+ Description: 'Use when x then ... for one-line cases.'
597
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
598
+ Enabled: true
599
+
600
+ Style/WhileUntilDo:
601
+ Description: 'Checks for redundant do after while or until.'
602
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-while-do'
603
+ Enabled: true
604
+
605
+ Style/WhileUntilModifier:
606
+ Description: >-
607
+ Favor modifier while/until usage when you have a
608
+ single-line body.
609
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
610
+ Enabled: true
611
+
612
+ Style/WordArray:
613
+ Description: 'Use %w or %W for arrays of words.'
614
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
615
+ Enabled: true
616
+
617
+ #################### Metrics ################################
618
+
619
+ Metrics/ParameterLists:
620
+ Description: 'Avoid parameter lists longer than three or four parameters.'
621
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
622
+ Enabled: true
623
+
624
+ #################### Lint ################################
625
+ ### Warnings
626
+
627
+ Lint/AmbiguousOperator:
628
+ Description: >-
629
+ Checks for ambiguous operators in the first argument of a
630
+ method invocation without parentheses.
631
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
632
+ Enabled: true
633
+
634
+ Lint/AmbiguousRegexpLiteral:
635
+ Description: >-
636
+ Checks for ambiguous regexp literals in the first argument of
637
+ a method invocation without parenthesis.
638
+ Enabled: true
639
+
640
+ Lint/BlockAlignment:
641
+ Description: 'Align block ends correctly.'
642
+ Enabled: true
643
+
644
+ Lint/ConditionPosition:
645
+ Description: >-
646
+ Checks for condition placed in a confusing position relative to
647
+ the keyword.
648
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
649
+ Enabled: true
650
+
651
+ Lint/Debugger:
652
+ Description: 'Check for debugger calls.'
653
+ Enabled: true
654
+
655
+ Lint/DefEndAlignment:
656
+ Description: 'Align ends corresponding to defs correctly.'
657
+ Enabled: true
658
+
659
+ Lint/DeprecatedClassMethods:
660
+ Description: 'Check for deprecated class method calls.'
661
+ Enabled: true
662
+
663
+ Lint/ElseLayout:
664
+ Description: 'Check for odd code arrangement in an else block.'
665
+ Enabled: true
666
+
667
+ Lint/EmptyEnsure:
668
+ Description: 'Checks for empty ensure block.'
669
+ Enabled: true
670
+
671
+ Lint/EmptyInterpolation:
672
+ Description: 'Checks for empty string interpolation.'
673
+ Enabled: true
674
+
675
+ Lint/EndAlignment:
676
+ Description: 'Align ends correctly.'
677
+ Enabled: true
678
+
679
+ Lint/EndInMethod:
680
+ Description: 'END blocks should not be placed inside method definitions.'
681
+ Enabled: true
682
+
683
+ Lint/EnsureReturn:
684
+ Description: 'Do not use return in an ensure block.'
685
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-return-ensure'
686
+ Enabled: true
687
+
688
+ Lint/InvalidCharacterLiteral:
689
+ Description: >-
690
+ Checks for invalid character literals with a non-escaped
691
+ whitespace character.
692
+ Enabled: true
693
+
694
+ Lint/LiteralInCondition:
695
+ Description: 'Checks of literals used in conditions.'
696
+ Enabled: true
697
+
698
+ Lint/LiteralInInterpolation:
699
+ Description: 'Checks for literals used in interpolation.'
700
+ Enabled: true
701
+
702
+ Lint/Loop:
703
+ Description: >-
704
+ Use Kernel#loop with break rather than begin/end/until or
705
+ begin/end/while for post-loop tests.
706
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
707
+ Enabled: true
708
+
709
+ Lint/ParenthesesAsGroupedExpression:
710
+ Description: >-
711
+ Checks for method calls with a space before the opening
712
+ parenthesis.
713
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
714
+ Enabled: true
715
+
716
+ Lint/RequireParentheses:
717
+ Description: >-
718
+ Use parentheses in the method call to avoid confusion
719
+ about precedence.
720
+ Enabled: true
721
+
722
+ Lint/SpaceBeforeFirstArg:
723
+ Description: >-
724
+ Put a space between a method name and the first argument
725
+ in a method call without parentheses.
726
+ Enabled: true
727
+
728
+ Lint/StringConversionInInterpolation:
729
+ Description: 'Checks for Object#to_s usage in string interpolation.'
730
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-to-s'
731
+ Enabled: true
732
+
733
+ Lint/UnreachableCode:
734
+ Description: 'Unreachable code.'
735
+ Enabled: true
736
+
737
+ Lint/UselessAccessModifier:
738
+ Description: 'Checks for useless access modifiers.'
739
+ Enabled: true
740
+
741
+ Lint/UselessComparison:
742
+ Description: 'Checks for comparison of something with itself.'
743
+ Enabled: true
744
+
745
+ Lint/UselessElseWithoutRescue:
746
+ Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
747
+ Enabled: true
748
+
749
+ Lint/UselessSetterCall:
750
+ Description: 'Checks for useless setter call to a local variable.'
751
+ Enabled: true
752
+
753
+ Lint/Void:
754
+ Description: 'Possible use of operator/literal/variable in void context.'
755
+ Enabled: true