foodcritic 2.1.0 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +691 -0
- data/LICENSE +21 -0
- data/README.md +28 -0
- data/chef_dsl_metadata/chef_0.10.10.json +22 -0
- data/chef_dsl_metadata/chef_10.12.0.json +22 -0
- data/chef_dsl_metadata/chef_10.14.0.json +22 -0
- data/chef_dsl_metadata/chef_10.14.2.json +22 -0
- data/chef_dsl_metadata/chef_10.14.4.json +22 -0
- data/chef_dsl_metadata/chef_10.16.0.json +22 -0
- data/chef_dsl_metadata/chef_10.16.2.json +22 -0
- data/chef_dsl_metadata/chef_10.16.4.json +22 -0
- data/chef_dsl_metadata/chef_10.16.6.json +22 -0
- data/chef_dsl_metadata/chef_10.18.0.json +22 -0
- data/chef_dsl_metadata/chef_10.18.2.json +22 -0
- data/chef_dsl_metadata/chef_10.20.0.json +22 -0
- data/chef_dsl_metadata/chef_10.22.0.json +22 -0
- data/chef_dsl_metadata/chef_10.24.0.json +22 -0
- data/chef_dsl_metadata/chef_10.24.4.json +8460 -0
- data/chef_dsl_metadata/chef_10.26.0.json +8460 -0
- data/chef_dsl_metadata/chef_11.0.0.json +22 -0
- data/chef_dsl_metadata/chef_11.2.0.json +22 -0
- data/chef_dsl_metadata/chef_11.4.0.json +22 -0
- data/chef_dsl_metadata/chef_11.4.2.json +8794 -0
- data/chef_dsl_metadata/chef_11.4.4.json +8794 -0
- data/features/002_check_string_interpolation.feature +45 -0
- data/features/003_check_for_chef_server.feature +56 -0
- data/features/004_check_service_resource_used.feature +53 -0
- data/features/005_check_for_resource_repetition.feature +64 -0
- data/features/006_check_file_mode.feature +35 -0
- data/features/007_check_for_undeclared_recipe_dependencies.feature +71 -0
- data/features/008_check_for_boilerplate_metadata.feature +25 -0
- data/features/009_check_for_unrecognised_resource_attributes.feature +77 -0
- data/features/010_check_search_syntax.feature +20 -0
- data/features/011_check_for_markdown_readme.feature +20 -0
- data/features/012_check_for_deprecated_readme_format.feature +20 -0
- data/features/013_check_for_hardcoded_tmpdir.feature +25 -0
- data/features/014_check_for_long_ruby_blocks.feature +30 -0
- data/features/015_check_for_definitions.feature +21 -0
- data/features/016_check_for_no_lwrp_default_action.feature +20 -0
- data/features/017_check_for_no_lwrp_notifications.feature +25 -0
- data/features/018_check_for_old_lwrp_notification_syntax.feature +25 -0
- data/features/019_check_for_consistent_node_access.feature +107 -0
- data/features/021_check_for_dodgy_lwrp_conditions.feature +28 -0
- data/features/022_check_for_dodgy_conditions_within_loop.feature +28 -0
- data/features/023_check_for_condition_around_resource.feature +52 -0
- data/features/024_check_for_missing_platforms.feature +43 -0
- data/features/025_check_for_deprecated_gem_install.feature +30 -0
- data/features/026_check_for_conditional_block_string.feature +20 -0
- data/features/027_check_for_internal_attribute_use.feature +22 -0
- data/features/028_check_for_incorrect_platform_method.feature +20 -0
- data/features/029_check_for_no_leading_cookbook_name.feature +18 -0
- data/features/030_check_for_debugger_breakpoints.feature +25 -0
- data/features/031_check_for_metadata_existence.feature +15 -0
- data/features/032_check_for_invalid_notification_timing.feature +22 -0
- data/features/033_check_for_missing_template.feature +75 -0
- data/features/034_check_for_unused_template_variables.feature +37 -0
- data/features/037_check_for_invalid_notification_action.feature +34 -0
- data/features/038_check_for_invalid_action.feature +51 -0
- data/features/039_check_for_key_access_to_node_methods.feature +33 -0
- data/features/040_check_raw_git_usage.feature +37 -0
- data/features/041_check_raw_download.feature +26 -0
- data/features/042_check_for_deprecated_require_recipe.feature +15 -0
- data/features/043_check_for_old_notification_style.feature +35 -0
- data/features/044_check_for_bare_attribute_keys.feature +43 -0
- data/features/045_check_for_cookbook_name_in_metadata.feature +20 -0
- data/features/046_check_for_assign_unless_nil_attributes.feature +21 -0
- data/features/build_framework_support.feature +99 -0
- data/features/checking_all_types_of_file.feature +40 -0
- data/features/choose_rules_to_apply.feature +49 -0
- data/features/command_line_help.feature +43 -0
- data/features/continuous_integration_support.feature +35 -0
- data/features/ignore_via_line_comments.feature +51 -0
- data/features/include_custom_rules.feature +29 -0
- data/features/individual_file.feature +12 -0
- data/features/limit_rules_to_specific_versions.feature +65 -0
- data/features/multiple_paths.feature +11 -0
- data/features/show_lines_matched.feature +20 -0
- data/features/sort_warnings.feature +10 -0
- data/features/specify_search_grammar.feature +25 -0
- data/features/step_definitions/cookbook_steps.rb +1791 -0
- data/features/support/command_helpers.rb +312 -0
- data/features/support/cookbook_helpers.rb +495 -0
- data/features/support/env.rb +11 -0
- data/lib/foodcritic.rb +0 -1
- data/lib/foodcritic/api.rb +3 -2
- data/lib/foodcritic/command_line.rb +4 -0
- data/lib/foodcritic/linter.rb +29 -6
- data/lib/foodcritic/output.rb +74 -26
- data/lib/foodcritic/rules.rb +6 -5
- data/lib/foodcritic/version.rb +1 -1
- data/man/foodcritic.1 +58 -0
- data/man/foodcritic.1.ronn +57 -0
- data/spec/foodcritic/api_spec.rb +1615 -0
- data/spec/foodcritic/chef_spec.rb +66 -0
- data/spec/foodcritic/command_line_spec.rb +51 -0
- data/spec/foodcritic/domain_spec.rb +24 -0
- data/spec/foodcritic/linter_spec.rb +91 -0
- data/spec/foodcritic/template_spec.rb +49 -0
- data/spec/regression/cookbooks.txt +135 -0
- data/spec/regression/expected-output.txt +443 -0
- data/spec/regression/regression_spec.rb +17 -0
- data/spec/regression_helpers.rb +37 -0
- data/spec/spec_helper.rb +10 -0
- metadata +87 -24
@@ -1274,6 +1274,7 @@
|
|
1274
1274
|
"define_singleton_method",
|
1275
1275
|
"defined_at",
|
1276
1276
|
"delayed_notifications",
|
1277
|
+
"deny_rights",
|
1277
1278
|
"deprecated_ivar",
|
1278
1279
|
"diff",
|
1279
1280
|
"display",
|
@@ -1296,6 +1297,7 @@
|
|
1296
1297
|
"identity",
|
1297
1298
|
"ignore_failure",
|
1298
1299
|
"immediate_notifications",
|
1300
|
+
"inherits",
|
1299
1301
|
"initialize_clone",
|
1300
1302
|
"initialize_dup",
|
1301
1303
|
"inspect",
|
@@ -1353,6 +1355,7 @@
|
|
1353
1355
|
"retries=",
|
1354
1356
|
"retry_delay",
|
1355
1357
|
"retry_delay=",
|
1358
|
+
"rights",
|
1356
1359
|
"run_action",
|
1357
1360
|
"run_context",
|
1358
1361
|
"run_context=",
|
@@ -2300,6 +2303,7 @@
|
|
2300
2303
|
"define_singleton_method",
|
2301
2304
|
"defined_at",
|
2302
2305
|
"delayed_notifications",
|
2306
|
+
"deny_rights",
|
2303
2307
|
"deprecated_ivar",
|
2304
2308
|
"display",
|
2305
2309
|
"dup",
|
@@ -2321,6 +2325,7 @@
|
|
2321
2325
|
"identity",
|
2322
2326
|
"ignore_failure",
|
2323
2327
|
"immediate_notifications",
|
2328
|
+
"inherits",
|
2324
2329
|
"initialize_clone",
|
2325
2330
|
"initialize_dup",
|
2326
2331
|
"inspect",
|
@@ -2379,6 +2384,7 @@
|
|
2379
2384
|
"retries=",
|
2380
2385
|
"retry_delay",
|
2381
2386
|
"retry_delay=",
|
2387
|
+
"rights",
|
2382
2388
|
"run_action",
|
2383
2389
|
"run_context",
|
2384
2390
|
"run_context=",
|
@@ -3211,6 +3217,7 @@
|
|
3211
3217
|
"define_singleton_method",
|
3212
3218
|
"defined_at",
|
3213
3219
|
"delayed_notifications",
|
3220
|
+
"deny_rights",
|
3214
3221
|
"deprecated_ivar",
|
3215
3222
|
"diff",
|
3216
3223
|
"display",
|
@@ -3233,6 +3240,7 @@
|
|
3233
3240
|
"identity",
|
3234
3241
|
"ignore_failure",
|
3235
3242
|
"immediate_notifications",
|
3243
|
+
"inherits",
|
3236
3244
|
"initialize_clone",
|
3237
3245
|
"initialize_dup",
|
3238
3246
|
"inspect",
|
@@ -3290,6 +3298,7 @@
|
|
3290
3298
|
"retries=",
|
3291
3299
|
"retry_delay",
|
3292
3300
|
"retry_delay=",
|
3301
|
+
"rights",
|
3293
3302
|
"run_action",
|
3294
3303
|
"run_context",
|
3295
3304
|
"run_context=",
|
@@ -4432,6 +4441,7 @@
|
|
4432
4441
|
"define_singleton_method",
|
4433
4442
|
"defined_at",
|
4434
4443
|
"delayed_notifications",
|
4444
|
+
"deny_rights",
|
4435
4445
|
"deprecated_ivar",
|
4436
4446
|
"display",
|
4437
4447
|
"dup",
|
@@ -4453,6 +4463,7 @@
|
|
4453
4463
|
"identity",
|
4454
4464
|
"ignore_failure",
|
4455
4465
|
"immediate_notifications",
|
4466
|
+
"inherits",
|
4456
4467
|
"initialize_clone",
|
4457
4468
|
"initialize_dup",
|
4458
4469
|
"inspect",
|
@@ -4511,6 +4522,7 @@
|
|
4511
4522
|
"retries=",
|
4512
4523
|
"retry_delay",
|
4513
4524
|
"retry_delay=",
|
4525
|
+
"rights",
|
4514
4526
|
"run_action",
|
4515
4527
|
"run_context",
|
4516
4528
|
"run_context=",
|
@@ -6103,6 +6115,7 @@
|
|
6103
6115
|
"define_singleton_method",
|
6104
6116
|
"defined_at",
|
6105
6117
|
"delayed_notifications",
|
6118
|
+
"deny_rights",
|
6106
6119
|
"deprecated_ivar",
|
6107
6120
|
"display",
|
6108
6121
|
"dup",
|
@@ -6120,6 +6133,7 @@
|
|
6120
6133
|
"files_group",
|
6121
6134
|
"files_mode",
|
6122
6135
|
"files_owner",
|
6136
|
+
"files_rights",
|
6123
6137
|
"freeze",
|
6124
6138
|
"frozen?",
|
6125
6139
|
"gem",
|
@@ -6128,6 +6142,7 @@
|
|
6128
6142
|
"identity",
|
6129
6143
|
"ignore_failure",
|
6130
6144
|
"immediate_notifications",
|
6145
|
+
"inherits",
|
6131
6146
|
"initialize_clone",
|
6132
6147
|
"initialize_dup",
|
6133
6148
|
"inspect",
|
@@ -6188,6 +6203,7 @@
|
|
6188
6203
|
"retries=",
|
6189
6204
|
"retry_delay",
|
6190
6205
|
"retry_delay=",
|
6206
|
+
"rights",
|
6191
6207
|
"run_action",
|
6192
6208
|
"run_context",
|
6193
6209
|
"run_context=",
|
@@ -6265,6 +6281,7 @@
|
|
6265
6281
|
"define_singleton_method",
|
6266
6282
|
"defined_at",
|
6267
6283
|
"delayed_notifications",
|
6284
|
+
"deny_rights",
|
6268
6285
|
"deprecated_ivar",
|
6269
6286
|
"diff",
|
6270
6287
|
"display",
|
@@ -6287,6 +6304,7 @@
|
|
6287
6304
|
"identity",
|
6288
6305
|
"ignore_failure",
|
6289
6306
|
"immediate_notifications",
|
6307
|
+
"inherits",
|
6290
6308
|
"initialize_clone",
|
6291
6309
|
"initialize_dup",
|
6292
6310
|
"inspect",
|
@@ -6344,6 +6362,7 @@
|
|
6344
6362
|
"retries=",
|
6345
6363
|
"retry_delay",
|
6346
6364
|
"retry_delay=",
|
6365
|
+
"rights",
|
6347
6366
|
"run_action",
|
6348
6367
|
"run_context",
|
6349
6368
|
"run_context=",
|
@@ -7814,6 +7833,7 @@
|
|
7814
7833
|
"define_singleton_method",
|
7815
7834
|
"defined_at",
|
7816
7835
|
"delayed_notifications",
|
7836
|
+
"deny_rights",
|
7817
7837
|
"deprecated_ivar",
|
7818
7838
|
"diff",
|
7819
7839
|
"display",
|
@@ -7836,6 +7856,7 @@
|
|
7836
7856
|
"identity",
|
7837
7857
|
"ignore_failure",
|
7838
7858
|
"immediate_notifications",
|
7859
|
+
"inherits",
|
7839
7860
|
"initialize_clone",
|
7840
7861
|
"initialize_dup",
|
7841
7862
|
"inspect",
|
@@ -7894,6 +7915,7 @@
|
|
7894
7915
|
"retries=",
|
7895
7916
|
"retry_delay",
|
7896
7917
|
"retry_delay=",
|
7918
|
+
"rights",
|
7897
7919
|
"run_action",
|
7898
7920
|
"run_context",
|
7899
7921
|
"run_context=",
|
@@ -1274,6 +1274,7 @@
|
|
1274
1274
|
"define_singleton_method",
|
1275
1275
|
"defined_at",
|
1276
1276
|
"delayed_notifications",
|
1277
|
+
"deny_rights",
|
1277
1278
|
"deprecated_ivar",
|
1278
1279
|
"diff",
|
1279
1280
|
"display",
|
@@ -1296,6 +1297,7 @@
|
|
1296
1297
|
"identity",
|
1297
1298
|
"ignore_failure",
|
1298
1299
|
"immediate_notifications",
|
1300
|
+
"inherits",
|
1299
1301
|
"initialize_clone",
|
1300
1302
|
"initialize_dup",
|
1301
1303
|
"inspect",
|
@@ -1353,6 +1355,7 @@
|
|
1353
1355
|
"retries=",
|
1354
1356
|
"retry_delay",
|
1355
1357
|
"retry_delay=",
|
1358
|
+
"rights",
|
1356
1359
|
"run_action",
|
1357
1360
|
"run_context",
|
1358
1361
|
"run_context=",
|
@@ -2300,6 +2303,7 @@
|
|
2300
2303
|
"define_singleton_method",
|
2301
2304
|
"defined_at",
|
2302
2305
|
"delayed_notifications",
|
2306
|
+
"deny_rights",
|
2303
2307
|
"deprecated_ivar",
|
2304
2308
|
"display",
|
2305
2309
|
"dup",
|
@@ -2321,6 +2325,7 @@
|
|
2321
2325
|
"identity",
|
2322
2326
|
"ignore_failure",
|
2323
2327
|
"immediate_notifications",
|
2328
|
+
"inherits",
|
2324
2329
|
"initialize_clone",
|
2325
2330
|
"initialize_dup",
|
2326
2331
|
"inspect",
|
@@ -2379,6 +2384,7 @@
|
|
2379
2384
|
"retries=",
|
2380
2385
|
"retry_delay",
|
2381
2386
|
"retry_delay=",
|
2387
|
+
"rights",
|
2382
2388
|
"run_action",
|
2383
2389
|
"run_context",
|
2384
2390
|
"run_context=",
|
@@ -3211,6 +3217,7 @@
|
|
3211
3217
|
"define_singleton_method",
|
3212
3218
|
"defined_at",
|
3213
3219
|
"delayed_notifications",
|
3220
|
+
"deny_rights",
|
3214
3221
|
"deprecated_ivar",
|
3215
3222
|
"diff",
|
3216
3223
|
"display",
|
@@ -3233,6 +3240,7 @@
|
|
3233
3240
|
"identity",
|
3234
3241
|
"ignore_failure",
|
3235
3242
|
"immediate_notifications",
|
3243
|
+
"inherits",
|
3236
3244
|
"initialize_clone",
|
3237
3245
|
"initialize_dup",
|
3238
3246
|
"inspect",
|
@@ -3290,6 +3298,7 @@
|
|
3290
3298
|
"retries=",
|
3291
3299
|
"retry_delay",
|
3292
3300
|
"retry_delay=",
|
3301
|
+
"rights",
|
3293
3302
|
"run_action",
|
3294
3303
|
"run_context",
|
3295
3304
|
"run_context=",
|
@@ -4432,6 +4441,7 @@
|
|
4432
4441
|
"define_singleton_method",
|
4433
4442
|
"defined_at",
|
4434
4443
|
"delayed_notifications",
|
4444
|
+
"deny_rights",
|
4435
4445
|
"deprecated_ivar",
|
4436
4446
|
"display",
|
4437
4447
|
"dup",
|
@@ -4453,6 +4463,7 @@
|
|
4453
4463
|
"identity",
|
4454
4464
|
"ignore_failure",
|
4455
4465
|
"immediate_notifications",
|
4466
|
+
"inherits",
|
4456
4467
|
"initialize_clone",
|
4457
4468
|
"initialize_dup",
|
4458
4469
|
"inspect",
|
@@ -4511,6 +4522,7 @@
|
|
4511
4522
|
"retries=",
|
4512
4523
|
"retry_delay",
|
4513
4524
|
"retry_delay=",
|
4525
|
+
"rights",
|
4514
4526
|
"run_action",
|
4515
4527
|
"run_context",
|
4516
4528
|
"run_context=",
|
@@ -6103,6 +6115,7 @@
|
|
6103
6115
|
"define_singleton_method",
|
6104
6116
|
"defined_at",
|
6105
6117
|
"delayed_notifications",
|
6118
|
+
"deny_rights",
|
6106
6119
|
"deprecated_ivar",
|
6107
6120
|
"display",
|
6108
6121
|
"dup",
|
@@ -6120,6 +6133,7 @@
|
|
6120
6133
|
"files_group",
|
6121
6134
|
"files_mode",
|
6122
6135
|
"files_owner",
|
6136
|
+
"files_rights",
|
6123
6137
|
"freeze",
|
6124
6138
|
"frozen?",
|
6125
6139
|
"gem",
|
@@ -6128,6 +6142,7 @@
|
|
6128
6142
|
"identity",
|
6129
6143
|
"ignore_failure",
|
6130
6144
|
"immediate_notifications",
|
6145
|
+
"inherits",
|
6131
6146
|
"initialize_clone",
|
6132
6147
|
"initialize_dup",
|
6133
6148
|
"inspect",
|
@@ -6188,6 +6203,7 @@
|
|
6188
6203
|
"retries=",
|
6189
6204
|
"retry_delay",
|
6190
6205
|
"retry_delay=",
|
6206
|
+
"rights",
|
6191
6207
|
"run_action",
|
6192
6208
|
"run_context",
|
6193
6209
|
"run_context=",
|
@@ -6265,6 +6281,7 @@
|
|
6265
6281
|
"define_singleton_method",
|
6266
6282
|
"defined_at",
|
6267
6283
|
"delayed_notifications",
|
6284
|
+
"deny_rights",
|
6268
6285
|
"deprecated_ivar",
|
6269
6286
|
"diff",
|
6270
6287
|
"display",
|
@@ -6287,6 +6304,7 @@
|
|
6287
6304
|
"identity",
|
6288
6305
|
"ignore_failure",
|
6289
6306
|
"immediate_notifications",
|
6307
|
+
"inherits",
|
6290
6308
|
"initialize_clone",
|
6291
6309
|
"initialize_dup",
|
6292
6310
|
"inspect",
|
@@ -6344,6 +6362,7 @@
|
|
6344
6362
|
"retries=",
|
6345
6363
|
"retry_delay",
|
6346
6364
|
"retry_delay=",
|
6365
|
+
"rights",
|
6347
6366
|
"run_action",
|
6348
6367
|
"run_context",
|
6349
6368
|
"run_context=",
|
@@ -7814,6 +7833,7 @@
|
|
7814
7833
|
"define_singleton_method",
|
7815
7834
|
"defined_at",
|
7816
7835
|
"delayed_notifications",
|
7836
|
+
"deny_rights",
|
7817
7837
|
"deprecated_ivar",
|
7818
7838
|
"diff",
|
7819
7839
|
"display",
|
@@ -7836,6 +7856,7 @@
|
|
7836
7856
|
"identity",
|
7837
7857
|
"ignore_failure",
|
7838
7858
|
"immediate_notifications",
|
7859
|
+
"inherits",
|
7839
7860
|
"initialize_clone",
|
7840
7861
|
"initialize_dup",
|
7841
7862
|
"inspect",
|
@@ -7894,6 +7915,7 @@
|
|
7894
7915
|
"retries=",
|
7895
7916
|
"retry_delay",
|
7896
7917
|
"retry_delay=",
|
7918
|
+
"rights",
|
7897
7919
|
"run_action",
|
7898
7920
|
"run_context",
|
7899
7921
|
"run_context=",
|
@@ -1274,6 +1274,7 @@
|
|
1274
1274
|
"define_singleton_method",
|
1275
1275
|
"defined_at",
|
1276
1276
|
"delayed_notifications",
|
1277
|
+
"deny_rights",
|
1277
1278
|
"deprecated_ivar",
|
1278
1279
|
"diff",
|
1279
1280
|
"display",
|
@@ -1296,6 +1297,7 @@
|
|
1296
1297
|
"identity",
|
1297
1298
|
"ignore_failure",
|
1298
1299
|
"immediate_notifications",
|
1300
|
+
"inherits",
|
1299
1301
|
"initialize_clone",
|
1300
1302
|
"initialize_dup",
|
1301
1303
|
"inspect",
|
@@ -1353,6 +1355,7 @@
|
|
1353
1355
|
"retries=",
|
1354
1356
|
"retry_delay",
|
1355
1357
|
"retry_delay=",
|
1358
|
+
"rights",
|
1356
1359
|
"run_action",
|
1357
1360
|
"run_context",
|
1358
1361
|
"run_context=",
|
@@ -2300,6 +2303,7 @@
|
|
2300
2303
|
"define_singleton_method",
|
2301
2304
|
"defined_at",
|
2302
2305
|
"delayed_notifications",
|
2306
|
+
"deny_rights",
|
2303
2307
|
"deprecated_ivar",
|
2304
2308
|
"display",
|
2305
2309
|
"dup",
|
@@ -2321,6 +2325,7 @@
|
|
2321
2325
|
"identity",
|
2322
2326
|
"ignore_failure",
|
2323
2327
|
"immediate_notifications",
|
2328
|
+
"inherits",
|
2324
2329
|
"initialize_clone",
|
2325
2330
|
"initialize_dup",
|
2326
2331
|
"inspect",
|
@@ -2379,6 +2384,7 @@
|
|
2379
2384
|
"retries=",
|
2380
2385
|
"retry_delay",
|
2381
2386
|
"retry_delay=",
|
2387
|
+
"rights",
|
2382
2388
|
"run_action",
|
2383
2389
|
"run_context",
|
2384
2390
|
"run_context=",
|
@@ -3211,6 +3217,7 @@
|
|
3211
3217
|
"define_singleton_method",
|
3212
3218
|
"defined_at",
|
3213
3219
|
"delayed_notifications",
|
3220
|
+
"deny_rights",
|
3214
3221
|
"deprecated_ivar",
|
3215
3222
|
"diff",
|
3216
3223
|
"display",
|
@@ -3233,6 +3240,7 @@
|
|
3233
3240
|
"identity",
|
3234
3241
|
"ignore_failure",
|
3235
3242
|
"immediate_notifications",
|
3243
|
+
"inherits",
|
3236
3244
|
"initialize_clone",
|
3237
3245
|
"initialize_dup",
|
3238
3246
|
"inspect",
|
@@ -3290,6 +3298,7 @@
|
|
3290
3298
|
"retries=",
|
3291
3299
|
"retry_delay",
|
3292
3300
|
"retry_delay=",
|
3301
|
+
"rights",
|
3293
3302
|
"run_action",
|
3294
3303
|
"run_context",
|
3295
3304
|
"run_context=",
|
@@ -4432,6 +4441,7 @@
|
|
4432
4441
|
"define_singleton_method",
|
4433
4442
|
"defined_at",
|
4434
4443
|
"delayed_notifications",
|
4444
|
+
"deny_rights",
|
4435
4445
|
"deprecated_ivar",
|
4436
4446
|
"display",
|
4437
4447
|
"dup",
|
@@ -4453,6 +4463,7 @@
|
|
4453
4463
|
"identity",
|
4454
4464
|
"ignore_failure",
|
4455
4465
|
"immediate_notifications",
|
4466
|
+
"inherits",
|
4456
4467
|
"initialize_clone",
|
4457
4468
|
"initialize_dup",
|
4458
4469
|
"inspect",
|
@@ -4511,6 +4522,7 @@
|
|
4511
4522
|
"retries=",
|
4512
4523
|
"retry_delay",
|
4513
4524
|
"retry_delay=",
|
4525
|
+
"rights",
|
4514
4526
|
"run_action",
|
4515
4527
|
"run_context",
|
4516
4528
|
"run_context=",
|
@@ -6103,6 +6115,7 @@
|
|
6103
6115
|
"define_singleton_method",
|
6104
6116
|
"defined_at",
|
6105
6117
|
"delayed_notifications",
|
6118
|
+
"deny_rights",
|
6106
6119
|
"deprecated_ivar",
|
6107
6120
|
"display",
|
6108
6121
|
"dup",
|
@@ -6120,6 +6133,7 @@
|
|
6120
6133
|
"files_group",
|
6121
6134
|
"files_mode",
|
6122
6135
|
"files_owner",
|
6136
|
+
"files_rights",
|
6123
6137
|
"freeze",
|
6124
6138
|
"frozen?",
|
6125
6139
|
"gem",
|
@@ -6128,6 +6142,7 @@
|
|
6128
6142
|
"identity",
|
6129
6143
|
"ignore_failure",
|
6130
6144
|
"immediate_notifications",
|
6145
|
+
"inherits",
|
6131
6146
|
"initialize_clone",
|
6132
6147
|
"initialize_dup",
|
6133
6148
|
"inspect",
|
@@ -6188,6 +6203,7 @@
|
|
6188
6203
|
"retries=",
|
6189
6204
|
"retry_delay",
|
6190
6205
|
"retry_delay=",
|
6206
|
+
"rights",
|
6191
6207
|
"run_action",
|
6192
6208
|
"run_context",
|
6193
6209
|
"run_context=",
|
@@ -6265,6 +6281,7 @@
|
|
6265
6281
|
"define_singleton_method",
|
6266
6282
|
"defined_at",
|
6267
6283
|
"delayed_notifications",
|
6284
|
+
"deny_rights",
|
6268
6285
|
"deprecated_ivar",
|
6269
6286
|
"diff",
|
6270
6287
|
"display",
|
@@ -6287,6 +6304,7 @@
|
|
6287
6304
|
"identity",
|
6288
6305
|
"ignore_failure",
|
6289
6306
|
"immediate_notifications",
|
6307
|
+
"inherits",
|
6290
6308
|
"initialize_clone",
|
6291
6309
|
"initialize_dup",
|
6292
6310
|
"inspect",
|
@@ -6344,6 +6362,7 @@
|
|
6344
6362
|
"retries=",
|
6345
6363
|
"retry_delay",
|
6346
6364
|
"retry_delay=",
|
6365
|
+
"rights",
|
6347
6366
|
"run_action",
|
6348
6367
|
"run_context",
|
6349
6368
|
"run_context=",
|
@@ -7814,6 +7833,7 @@
|
|
7814
7833
|
"define_singleton_method",
|
7815
7834
|
"defined_at",
|
7816
7835
|
"delayed_notifications",
|
7836
|
+
"deny_rights",
|
7817
7837
|
"deprecated_ivar",
|
7818
7838
|
"diff",
|
7819
7839
|
"display",
|
@@ -7836,6 +7856,7 @@
|
|
7836
7856
|
"identity",
|
7837
7857
|
"ignore_failure",
|
7838
7858
|
"immediate_notifications",
|
7859
|
+
"inherits",
|
7839
7860
|
"initialize_clone",
|
7840
7861
|
"initialize_dup",
|
7841
7862
|
"inspect",
|
@@ -7894,6 +7915,7 @@
|
|
7894
7915
|
"retries=",
|
7895
7916
|
"retry_delay",
|
7896
7917
|
"retry_delay=",
|
7918
|
+
"rights",
|
7897
7919
|
"run_action",
|
7898
7920
|
"run_context",
|
7899
7921
|
"run_context=",
|