foodcritic 2.1.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. data/CHANGELOG.md +691 -0
  2. data/LICENSE +21 -0
  3. data/README.md +28 -0
  4. data/chef_dsl_metadata/chef_0.10.10.json +22 -0
  5. data/chef_dsl_metadata/chef_10.12.0.json +22 -0
  6. data/chef_dsl_metadata/chef_10.14.0.json +22 -0
  7. data/chef_dsl_metadata/chef_10.14.2.json +22 -0
  8. data/chef_dsl_metadata/chef_10.14.4.json +22 -0
  9. data/chef_dsl_metadata/chef_10.16.0.json +22 -0
  10. data/chef_dsl_metadata/chef_10.16.2.json +22 -0
  11. data/chef_dsl_metadata/chef_10.16.4.json +22 -0
  12. data/chef_dsl_metadata/chef_10.16.6.json +22 -0
  13. data/chef_dsl_metadata/chef_10.18.0.json +22 -0
  14. data/chef_dsl_metadata/chef_10.18.2.json +22 -0
  15. data/chef_dsl_metadata/chef_10.20.0.json +22 -0
  16. data/chef_dsl_metadata/chef_10.22.0.json +22 -0
  17. data/chef_dsl_metadata/chef_10.24.0.json +22 -0
  18. data/chef_dsl_metadata/chef_10.24.4.json +8460 -0
  19. data/chef_dsl_metadata/chef_10.26.0.json +8460 -0
  20. data/chef_dsl_metadata/chef_11.0.0.json +22 -0
  21. data/chef_dsl_metadata/chef_11.2.0.json +22 -0
  22. data/chef_dsl_metadata/chef_11.4.0.json +22 -0
  23. data/chef_dsl_metadata/chef_11.4.2.json +8794 -0
  24. data/chef_dsl_metadata/chef_11.4.4.json +8794 -0
  25. data/features/002_check_string_interpolation.feature +45 -0
  26. data/features/003_check_for_chef_server.feature +56 -0
  27. data/features/004_check_service_resource_used.feature +53 -0
  28. data/features/005_check_for_resource_repetition.feature +64 -0
  29. data/features/006_check_file_mode.feature +35 -0
  30. data/features/007_check_for_undeclared_recipe_dependencies.feature +71 -0
  31. data/features/008_check_for_boilerplate_metadata.feature +25 -0
  32. data/features/009_check_for_unrecognised_resource_attributes.feature +77 -0
  33. data/features/010_check_search_syntax.feature +20 -0
  34. data/features/011_check_for_markdown_readme.feature +20 -0
  35. data/features/012_check_for_deprecated_readme_format.feature +20 -0
  36. data/features/013_check_for_hardcoded_tmpdir.feature +25 -0
  37. data/features/014_check_for_long_ruby_blocks.feature +30 -0
  38. data/features/015_check_for_definitions.feature +21 -0
  39. data/features/016_check_for_no_lwrp_default_action.feature +20 -0
  40. data/features/017_check_for_no_lwrp_notifications.feature +25 -0
  41. data/features/018_check_for_old_lwrp_notification_syntax.feature +25 -0
  42. data/features/019_check_for_consistent_node_access.feature +107 -0
  43. data/features/021_check_for_dodgy_lwrp_conditions.feature +28 -0
  44. data/features/022_check_for_dodgy_conditions_within_loop.feature +28 -0
  45. data/features/023_check_for_condition_around_resource.feature +52 -0
  46. data/features/024_check_for_missing_platforms.feature +43 -0
  47. data/features/025_check_for_deprecated_gem_install.feature +30 -0
  48. data/features/026_check_for_conditional_block_string.feature +20 -0
  49. data/features/027_check_for_internal_attribute_use.feature +22 -0
  50. data/features/028_check_for_incorrect_platform_method.feature +20 -0
  51. data/features/029_check_for_no_leading_cookbook_name.feature +18 -0
  52. data/features/030_check_for_debugger_breakpoints.feature +25 -0
  53. data/features/031_check_for_metadata_existence.feature +15 -0
  54. data/features/032_check_for_invalid_notification_timing.feature +22 -0
  55. data/features/033_check_for_missing_template.feature +75 -0
  56. data/features/034_check_for_unused_template_variables.feature +37 -0
  57. data/features/037_check_for_invalid_notification_action.feature +34 -0
  58. data/features/038_check_for_invalid_action.feature +51 -0
  59. data/features/039_check_for_key_access_to_node_methods.feature +33 -0
  60. data/features/040_check_raw_git_usage.feature +37 -0
  61. data/features/041_check_raw_download.feature +26 -0
  62. data/features/042_check_for_deprecated_require_recipe.feature +15 -0
  63. data/features/043_check_for_old_notification_style.feature +35 -0
  64. data/features/044_check_for_bare_attribute_keys.feature +43 -0
  65. data/features/045_check_for_cookbook_name_in_metadata.feature +20 -0
  66. data/features/046_check_for_assign_unless_nil_attributes.feature +21 -0
  67. data/features/build_framework_support.feature +99 -0
  68. data/features/checking_all_types_of_file.feature +40 -0
  69. data/features/choose_rules_to_apply.feature +49 -0
  70. data/features/command_line_help.feature +43 -0
  71. data/features/continuous_integration_support.feature +35 -0
  72. data/features/ignore_via_line_comments.feature +51 -0
  73. data/features/include_custom_rules.feature +29 -0
  74. data/features/individual_file.feature +12 -0
  75. data/features/limit_rules_to_specific_versions.feature +65 -0
  76. data/features/multiple_paths.feature +11 -0
  77. data/features/show_lines_matched.feature +20 -0
  78. data/features/sort_warnings.feature +10 -0
  79. data/features/specify_search_grammar.feature +25 -0
  80. data/features/step_definitions/cookbook_steps.rb +1791 -0
  81. data/features/support/command_helpers.rb +312 -0
  82. data/features/support/cookbook_helpers.rb +495 -0
  83. data/features/support/env.rb +11 -0
  84. data/lib/foodcritic.rb +0 -1
  85. data/lib/foodcritic/api.rb +3 -2
  86. data/lib/foodcritic/command_line.rb +4 -0
  87. data/lib/foodcritic/linter.rb +29 -6
  88. data/lib/foodcritic/output.rb +74 -26
  89. data/lib/foodcritic/rules.rb +6 -5
  90. data/lib/foodcritic/version.rb +1 -1
  91. data/man/foodcritic.1 +58 -0
  92. data/man/foodcritic.1.ronn +57 -0
  93. data/spec/foodcritic/api_spec.rb +1615 -0
  94. data/spec/foodcritic/chef_spec.rb +66 -0
  95. data/spec/foodcritic/command_line_spec.rb +51 -0
  96. data/spec/foodcritic/domain_spec.rb +24 -0
  97. data/spec/foodcritic/linter_spec.rb +91 -0
  98. data/spec/foodcritic/template_spec.rb +49 -0
  99. data/spec/regression/cookbooks.txt +135 -0
  100. data/spec/regression/expected-output.txt +443 -0
  101. data/spec/regression/regression_spec.rb +17 -0
  102. data/spec/regression_helpers.rb +37 -0
  103. data/spec/spec_helper.rb +10 -0
  104. metadata +87 -24
@@ -1270,6 +1270,7 @@
1270
1270
  "define_singleton_method",
1271
1271
  "defined_at",
1272
1272
  "delayed_notifications",
1273
+ "deny_rights",
1273
1274
  "deprecated_ivar",
1274
1275
  "diff",
1275
1276
  "display",
@@ -1292,6 +1293,7 @@
1292
1293
  "identity",
1293
1294
  "ignore_failure",
1294
1295
  "immediate_notifications",
1296
+ "inherits",
1295
1297
  "initialize_clone",
1296
1298
  "initialize_dup",
1297
1299
  "inspect",
@@ -1355,6 +1357,7 @@
1355
1357
  "retries=",
1356
1358
  "retry_delay",
1357
1359
  "retry_delay=",
1360
+ "rights",
1358
1361
  "run_action",
1359
1362
  "run_context",
1360
1363
  "run_context=",
@@ -2320,6 +2323,7 @@
2320
2323
  "define_singleton_method",
2321
2324
  "defined_at",
2322
2325
  "delayed_notifications",
2326
+ "deny_rights",
2323
2327
  "deprecated_ivar",
2324
2328
  "display",
2325
2329
  "dup",
@@ -2341,6 +2345,7 @@
2341
2345
  "identity",
2342
2346
  "ignore_failure",
2343
2347
  "immediate_notifications",
2348
+ "inherits",
2344
2349
  "initialize_clone",
2345
2350
  "initialize_dup",
2346
2351
  "inspect",
@@ -2405,6 +2410,7 @@
2405
2410
  "retries=",
2406
2411
  "retry_delay",
2407
2412
  "retry_delay=",
2413
+ "rights",
2408
2414
  "run_action",
2409
2415
  "run_context",
2410
2416
  "run_context=",
@@ -3255,6 +3261,7 @@
3255
3261
  "define_singleton_method",
3256
3262
  "defined_at",
3257
3263
  "delayed_notifications",
3264
+ "deny_rights",
3258
3265
  "deprecated_ivar",
3259
3266
  "diff",
3260
3267
  "display",
@@ -3277,6 +3284,7 @@
3277
3284
  "identity",
3278
3285
  "ignore_failure",
3279
3286
  "immediate_notifications",
3287
+ "inherits",
3280
3288
  "initialize_clone",
3281
3289
  "initialize_dup",
3282
3290
  "inspect",
@@ -3340,6 +3348,7 @@
3340
3348
  "retries=",
3341
3349
  "retry_delay",
3342
3350
  "retry_delay=",
3351
+ "rights",
3343
3352
  "run_action",
3344
3353
  "run_context",
3345
3354
  "run_context=",
@@ -4508,6 +4517,7 @@
4508
4517
  "define_singleton_method",
4509
4518
  "defined_at",
4510
4519
  "delayed_notifications",
4520
+ "deny_rights",
4511
4521
  "deprecated_ivar",
4512
4522
  "display",
4513
4523
  "dup",
@@ -4529,6 +4539,7 @@
4529
4539
  "identity",
4530
4540
  "ignore_failure",
4531
4541
  "immediate_notifications",
4542
+ "inherits",
4532
4543
  "initialize_clone",
4533
4544
  "initialize_dup",
4534
4545
  "inspect",
@@ -4593,6 +4604,7 @@
4593
4604
  "retries=",
4594
4605
  "retry_delay",
4595
4606
  "retry_delay=",
4607
+ "rights",
4596
4608
  "run_action",
4597
4609
  "run_context",
4598
4610
  "run_context=",
@@ -6376,6 +6388,7 @@
6376
6388
  "define_singleton_method",
6377
6389
  "defined_at",
6378
6390
  "delayed_notifications",
6391
+ "deny_rights",
6379
6392
  "deprecated_ivar",
6380
6393
  "display",
6381
6394
  "dup",
@@ -6393,6 +6406,7 @@
6393
6406
  "files_group",
6394
6407
  "files_mode",
6395
6408
  "files_owner",
6409
+ "files_rights",
6396
6410
  "freeze",
6397
6411
  "frozen?",
6398
6412
  "gem",
@@ -6401,6 +6415,7 @@
6401
6415
  "identity",
6402
6416
  "ignore_failure",
6403
6417
  "immediate_notifications",
6418
+ "inherits",
6404
6419
  "initialize_clone",
6405
6420
  "initialize_dup",
6406
6421
  "inspect",
@@ -6467,6 +6482,7 @@
6467
6482
  "retries=",
6468
6483
  "retry_delay",
6469
6484
  "retry_delay=",
6485
+ "rights",
6470
6486
  "run_action",
6471
6487
  "run_context",
6472
6488
  "run_context=",
@@ -6541,6 +6557,7 @@
6541
6557
  "define_singleton_method",
6542
6558
  "defined_at",
6543
6559
  "delayed_notifications",
6560
+ "deny_rights",
6544
6561
  "deprecated_ivar",
6545
6562
  "diff",
6546
6563
  "display",
@@ -6563,6 +6580,7 @@
6563
6580
  "identity",
6564
6581
  "ignore_failure",
6565
6582
  "immediate_notifications",
6583
+ "inherits",
6566
6584
  "initialize_clone",
6567
6585
  "initialize_dup",
6568
6586
  "inspect",
@@ -6626,6 +6644,7 @@
6626
6644
  "retries=",
6627
6645
  "retry_delay",
6628
6646
  "retry_delay=",
6647
+ "rights",
6629
6648
  "run_action",
6630
6649
  "run_context",
6631
6650
  "run_context=",
@@ -8131,6 +8150,7 @@
8131
8150
  "define_singleton_method",
8132
8151
  "defined_at",
8133
8152
  "delayed_notifications",
8153
+ "deny_rights",
8134
8154
  "deprecated_ivar",
8135
8155
  "diff",
8136
8156
  "display",
@@ -8153,6 +8173,7 @@
8153
8173
  "identity",
8154
8174
  "ignore_failure",
8155
8175
  "immediate_notifications",
8176
+ "inherits",
8156
8177
  "initialize_clone",
8157
8178
  "initialize_dup",
8158
8179
  "inspect",
@@ -8217,6 +8238,7 @@
8217
8238
  "retries=",
8218
8239
  "retry_delay",
8219
8240
  "retry_delay=",
8241
+ "rights",
8220
8242
  "run_action",
8221
8243
  "run_context",
8222
8244
  "run_context=",
@@ -1270,6 +1270,7 @@
1270
1270
  "define_singleton_method",
1271
1271
  "defined_at",
1272
1272
  "delayed_notifications",
1273
+ "deny_rights",
1273
1274
  "deprecated_ivar",
1274
1275
  "diff",
1275
1276
  "display",
@@ -1292,6 +1293,7 @@
1292
1293
  "identity",
1293
1294
  "ignore_failure",
1294
1295
  "immediate_notifications",
1296
+ "inherits",
1295
1297
  "initialize_clone",
1296
1298
  "initialize_dup",
1297
1299
  "inspect",
@@ -1355,6 +1357,7 @@
1355
1357
  "retries=",
1356
1358
  "retry_delay",
1357
1359
  "retry_delay=",
1360
+ "rights",
1358
1361
  "run_action",
1359
1362
  "run_context",
1360
1363
  "run_context=",
@@ -2320,6 +2323,7 @@
2320
2323
  "define_singleton_method",
2321
2324
  "defined_at",
2322
2325
  "delayed_notifications",
2326
+ "deny_rights",
2323
2327
  "deprecated_ivar",
2324
2328
  "display",
2325
2329
  "dup",
@@ -2341,6 +2345,7 @@
2341
2345
  "identity",
2342
2346
  "ignore_failure",
2343
2347
  "immediate_notifications",
2348
+ "inherits",
2344
2349
  "initialize_clone",
2345
2350
  "initialize_dup",
2346
2351
  "inspect",
@@ -2405,6 +2410,7 @@
2405
2410
  "retries=",
2406
2411
  "retry_delay",
2407
2412
  "retry_delay=",
2413
+ "rights",
2408
2414
  "run_action",
2409
2415
  "run_context",
2410
2416
  "run_context=",
@@ -3255,6 +3261,7 @@
3255
3261
  "define_singleton_method",
3256
3262
  "defined_at",
3257
3263
  "delayed_notifications",
3264
+ "deny_rights",
3258
3265
  "deprecated_ivar",
3259
3266
  "diff",
3260
3267
  "display",
@@ -3277,6 +3284,7 @@
3277
3284
  "identity",
3278
3285
  "ignore_failure",
3279
3286
  "immediate_notifications",
3287
+ "inherits",
3280
3288
  "initialize_clone",
3281
3289
  "initialize_dup",
3282
3290
  "inspect",
@@ -3340,6 +3348,7 @@
3340
3348
  "retries=",
3341
3349
  "retry_delay",
3342
3350
  "retry_delay=",
3351
+ "rights",
3343
3352
  "run_action",
3344
3353
  "run_context",
3345
3354
  "run_context=",
@@ -4508,6 +4517,7 @@
4508
4517
  "define_singleton_method",
4509
4518
  "defined_at",
4510
4519
  "delayed_notifications",
4520
+ "deny_rights",
4511
4521
  "deprecated_ivar",
4512
4522
  "display",
4513
4523
  "dup",
@@ -4529,6 +4539,7 @@
4529
4539
  "identity",
4530
4540
  "ignore_failure",
4531
4541
  "immediate_notifications",
4542
+ "inherits",
4532
4543
  "initialize_clone",
4533
4544
  "initialize_dup",
4534
4545
  "inspect",
@@ -4593,6 +4604,7 @@
4593
4604
  "retries=",
4594
4605
  "retry_delay",
4595
4606
  "retry_delay=",
4607
+ "rights",
4596
4608
  "run_action",
4597
4609
  "run_context",
4598
4610
  "run_context=",
@@ -6376,6 +6388,7 @@
6376
6388
  "define_singleton_method",
6377
6389
  "defined_at",
6378
6390
  "delayed_notifications",
6391
+ "deny_rights",
6379
6392
  "deprecated_ivar",
6380
6393
  "display",
6381
6394
  "dup",
@@ -6393,6 +6406,7 @@
6393
6406
  "files_group",
6394
6407
  "files_mode",
6395
6408
  "files_owner",
6409
+ "files_rights",
6396
6410
  "freeze",
6397
6411
  "frozen?",
6398
6412
  "gem",
@@ -6401,6 +6415,7 @@
6401
6415
  "identity",
6402
6416
  "ignore_failure",
6403
6417
  "immediate_notifications",
6418
+ "inherits",
6404
6419
  "initialize_clone",
6405
6420
  "initialize_dup",
6406
6421
  "inspect",
@@ -6467,6 +6482,7 @@
6467
6482
  "retries=",
6468
6483
  "retry_delay",
6469
6484
  "retry_delay=",
6485
+ "rights",
6470
6486
  "run_action",
6471
6487
  "run_context",
6472
6488
  "run_context=",
@@ -6541,6 +6557,7 @@
6541
6557
  "define_singleton_method",
6542
6558
  "defined_at",
6543
6559
  "delayed_notifications",
6560
+ "deny_rights",
6544
6561
  "deprecated_ivar",
6545
6562
  "diff",
6546
6563
  "display",
@@ -6563,6 +6580,7 @@
6563
6580
  "identity",
6564
6581
  "ignore_failure",
6565
6582
  "immediate_notifications",
6583
+ "inherits",
6566
6584
  "initialize_clone",
6567
6585
  "initialize_dup",
6568
6586
  "inspect",
@@ -6626,6 +6644,7 @@
6626
6644
  "retries=",
6627
6645
  "retry_delay",
6628
6646
  "retry_delay=",
6647
+ "rights",
6629
6648
  "run_action",
6630
6649
  "run_context",
6631
6650
  "run_context=",
@@ -8131,6 +8150,7 @@
8131
8150
  "define_singleton_method",
8132
8151
  "defined_at",
8133
8152
  "delayed_notifications",
8153
+ "deny_rights",
8134
8154
  "deprecated_ivar",
8135
8155
  "diff",
8136
8156
  "display",
@@ -8153,6 +8173,7 @@
8153
8173
  "identity",
8154
8174
  "ignore_failure",
8155
8175
  "immediate_notifications",
8176
+ "inherits",
8156
8177
  "initialize_clone",
8157
8178
  "initialize_dup",
8158
8179
  "inspect",
@@ -8217,6 +8238,7 @@
8217
8238
  "retries=",
8218
8239
  "retry_delay",
8219
8240
  "retry_delay=",
8241
+ "rights",
8220
8242
  "run_action",
8221
8243
  "run_context",
8222
8244
  "run_context=",
@@ -1270,6 +1270,7 @@
1270
1270
  "define_singleton_method",
1271
1271
  "defined_at",
1272
1272
  "delayed_notifications",
1273
+ "deny_rights",
1273
1274
  "deprecated_ivar",
1274
1275
  "diff",
1275
1276
  "display",
@@ -1292,6 +1293,7 @@
1292
1293
  "identity",
1293
1294
  "ignore_failure",
1294
1295
  "immediate_notifications",
1296
+ "inherits",
1295
1297
  "initialize_clone",
1296
1298
  "initialize_dup",
1297
1299
  "inspect",
@@ -1355,6 +1357,7 @@
1355
1357
  "retries=",
1356
1358
  "retry_delay",
1357
1359
  "retry_delay=",
1360
+ "rights",
1358
1361
  "run_action",
1359
1362
  "run_context",
1360
1363
  "run_context=",
@@ -2320,6 +2323,7 @@
2320
2323
  "define_singleton_method",
2321
2324
  "defined_at",
2322
2325
  "delayed_notifications",
2326
+ "deny_rights",
2323
2327
  "deprecated_ivar",
2324
2328
  "display",
2325
2329
  "dup",
@@ -2341,6 +2345,7 @@
2341
2345
  "identity",
2342
2346
  "ignore_failure",
2343
2347
  "immediate_notifications",
2348
+ "inherits",
2344
2349
  "initialize_clone",
2345
2350
  "initialize_dup",
2346
2351
  "inspect",
@@ -2405,6 +2410,7 @@
2405
2410
  "retries=",
2406
2411
  "retry_delay",
2407
2412
  "retry_delay=",
2413
+ "rights",
2408
2414
  "run_action",
2409
2415
  "run_context",
2410
2416
  "run_context=",
@@ -3255,6 +3261,7 @@
3255
3261
  "define_singleton_method",
3256
3262
  "defined_at",
3257
3263
  "delayed_notifications",
3264
+ "deny_rights",
3258
3265
  "deprecated_ivar",
3259
3266
  "diff",
3260
3267
  "display",
@@ -3277,6 +3284,7 @@
3277
3284
  "identity",
3278
3285
  "ignore_failure",
3279
3286
  "immediate_notifications",
3287
+ "inherits",
3280
3288
  "initialize_clone",
3281
3289
  "initialize_dup",
3282
3290
  "inspect",
@@ -3340,6 +3348,7 @@
3340
3348
  "retries=",
3341
3349
  "retry_delay",
3342
3350
  "retry_delay=",
3351
+ "rights",
3343
3352
  "run_action",
3344
3353
  "run_context",
3345
3354
  "run_context=",
@@ -4508,6 +4517,7 @@
4508
4517
  "define_singleton_method",
4509
4518
  "defined_at",
4510
4519
  "delayed_notifications",
4520
+ "deny_rights",
4511
4521
  "deprecated_ivar",
4512
4522
  "display",
4513
4523
  "dup",
@@ -4529,6 +4539,7 @@
4529
4539
  "identity",
4530
4540
  "ignore_failure",
4531
4541
  "immediate_notifications",
4542
+ "inherits",
4532
4543
  "initialize_clone",
4533
4544
  "initialize_dup",
4534
4545
  "inspect",
@@ -4593,6 +4604,7 @@
4593
4604
  "retries=",
4594
4605
  "retry_delay",
4595
4606
  "retry_delay=",
4607
+ "rights",
4596
4608
  "run_action",
4597
4609
  "run_context",
4598
4610
  "run_context=",
@@ -6376,6 +6388,7 @@
6376
6388
  "define_singleton_method",
6377
6389
  "defined_at",
6378
6390
  "delayed_notifications",
6391
+ "deny_rights",
6379
6392
  "deprecated_ivar",
6380
6393
  "display",
6381
6394
  "dup",
@@ -6393,6 +6406,7 @@
6393
6406
  "files_group",
6394
6407
  "files_mode",
6395
6408
  "files_owner",
6409
+ "files_rights",
6396
6410
  "freeze",
6397
6411
  "frozen?",
6398
6412
  "gem",
@@ -6401,6 +6415,7 @@
6401
6415
  "identity",
6402
6416
  "ignore_failure",
6403
6417
  "immediate_notifications",
6418
+ "inherits",
6404
6419
  "initialize_clone",
6405
6420
  "initialize_dup",
6406
6421
  "inspect",
@@ -6467,6 +6482,7 @@
6467
6482
  "retries=",
6468
6483
  "retry_delay",
6469
6484
  "retry_delay=",
6485
+ "rights",
6470
6486
  "run_action",
6471
6487
  "run_context",
6472
6488
  "run_context=",
@@ -6541,6 +6557,7 @@
6541
6557
  "define_singleton_method",
6542
6558
  "defined_at",
6543
6559
  "delayed_notifications",
6560
+ "deny_rights",
6544
6561
  "deprecated_ivar",
6545
6562
  "diff",
6546
6563
  "display",
@@ -6563,6 +6580,7 @@
6563
6580
  "identity",
6564
6581
  "ignore_failure",
6565
6582
  "immediate_notifications",
6583
+ "inherits",
6566
6584
  "initialize_clone",
6567
6585
  "initialize_dup",
6568
6586
  "inspect",
@@ -6626,6 +6644,7 @@
6626
6644
  "retries=",
6627
6645
  "retry_delay",
6628
6646
  "retry_delay=",
6647
+ "rights",
6629
6648
  "run_action",
6630
6649
  "run_context",
6631
6650
  "run_context=",
@@ -8131,6 +8150,7 @@
8131
8150
  "define_singleton_method",
8132
8151
  "defined_at",
8133
8152
  "delayed_notifications",
8153
+ "deny_rights",
8134
8154
  "deprecated_ivar",
8135
8155
  "diff",
8136
8156
  "display",
@@ -8153,6 +8173,7 @@
8153
8173
  "identity",
8154
8174
  "ignore_failure",
8155
8175
  "immediate_notifications",
8176
+ "inherits",
8156
8177
  "initialize_clone",
8157
8178
  "initialize_dup",
8158
8179
  "inspect",
@@ -8217,6 +8238,7 @@
8217
8238
  "retries=",
8218
8239
  "retry_delay",
8219
8240
  "retry_delay=",
8241
+ "rights",
8220
8242
  "run_action",
8221
8243
  "run_context",
8222
8244
  "run_context=",