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
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (C) 2011 by Andrew Crump
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Food Critic
2
+
3
+ Food Critic is a lint tool for Chef cookbooks. It requires Ruby 1.9.2+.
4
+
5
+ # Homepage
6
+ [http://acrmp.github.com/foodcritic/](http://acrmp.github.com/foodcritic/)
7
+
8
+ # Building
9
+
10
+ $ bundle install
11
+ $ bundle exec rake
12
+
13
+ # Continuous Integration
14
+ [Food Critic on Travis CI](http://travis-ci.org/acrmp/foodcritic)
15
+
16
+ ![Built on Travis](https://secure.travis-ci.org/acrmp/foodcritic.png?branch=master)
17
+
18
+ # License
19
+ MIT - see the accompanying [LICENSE](https://github.com/acrmp/foodcritic/blob/master/LICENSE) file for details.
20
+
21
+ # Changelog
22
+ To see what has changed in recent versions see the [CHANGELOG](https://github.com/acrmp/foodcritic/blob/master/CHANGELOG.md).
23
+ Food Critic follows the [Rubygems RationalVersioningPolicy](http://docs.rubygems.org/read/chapter/7).
24
+
25
+ # Contributing
26
+ Additional [rules](http://acrmp.github.com/foodcritic/#writing-a-new-rule) and bugfixes are welcome! Please fork and
27
+ submit a pull request on an individual branch per change.
28
+
@@ -1235,6 +1235,7 @@
1235
1235
  "define_singleton_method",
1236
1236
  "defined_at",
1237
1237
  "delayed_notifications",
1238
+ "deny_rights",
1238
1239
  "deprecated_ivar",
1239
1240
  "display",
1240
1241
  "dup",
@@ -1253,6 +1254,7 @@
1253
1254
  "hash",
1254
1255
  "ignore_failure",
1255
1256
  "immediate_notifications",
1257
+ "inherits",
1256
1258
  "initialize_clone",
1257
1259
  "initialize_dup",
1258
1260
  "inspect",
@@ -1309,6 +1311,7 @@
1309
1311
  "retries=",
1310
1312
  "retry_delay",
1311
1313
  "retry_delay=",
1314
+ "rights",
1312
1315
  "run_action",
1313
1316
  "run_context",
1314
1317
  "run_context=",
@@ -2209,6 +2212,7 @@
2209
2212
  "define_singleton_method",
2210
2213
  "defined_at",
2211
2214
  "delayed_notifications",
2215
+ "deny_rights",
2212
2216
  "deprecated_ivar",
2213
2217
  "display",
2214
2218
  "dup",
@@ -2227,6 +2231,7 @@
2227
2231
  "hash",
2228
2232
  "ignore_failure",
2229
2233
  "immediate_notifications",
2234
+ "inherits",
2230
2235
  "initialize_clone",
2231
2236
  "initialize_dup",
2232
2237
  "inspect",
@@ -2284,6 +2289,7 @@
2284
2289
  "retries=",
2285
2290
  "retry_delay",
2286
2291
  "retry_delay=",
2292
+ "rights",
2287
2293
  "run_action",
2288
2294
  "run_context",
2289
2295
  "run_context=",
@@ -3072,6 +3078,7 @@
3072
3078
  "define_singleton_method",
3073
3079
  "defined_at",
3074
3080
  "delayed_notifications",
3081
+ "deny_rights",
3075
3082
  "deprecated_ivar",
3076
3083
  "display",
3077
3084
  "dup",
@@ -3090,6 +3097,7 @@
3090
3097
  "hash",
3091
3098
  "ignore_failure",
3092
3099
  "immediate_notifications",
3100
+ "inherits",
3093
3101
  "initialize_clone",
3094
3102
  "initialize_dup",
3095
3103
  "inspect",
@@ -3146,6 +3154,7 @@
3146
3154
  "retries=",
3147
3155
  "retry_delay",
3148
3156
  "retry_delay=",
3157
+ "rights",
3149
3158
  "run_action",
3150
3159
  "run_context",
3151
3160
  "run_context=",
@@ -4085,6 +4094,7 @@
4085
4094
  "define_singleton_method",
4086
4095
  "defined_at",
4087
4096
  "delayed_notifications",
4097
+ "deny_rights",
4088
4098
  "deprecated_ivar",
4089
4099
  "display",
4090
4100
  "dup",
@@ -4103,6 +4113,7 @@
4103
4113
  "hash",
4104
4114
  "ignore_failure",
4105
4115
  "immediate_notifications",
4116
+ "inherits",
4106
4117
  "initialize_clone",
4107
4118
  "initialize_dup",
4108
4119
  "inspect",
@@ -4159,6 +4170,7 @@
4159
4170
  "retries=",
4160
4171
  "retry_delay",
4161
4172
  "retry_delay=",
4173
+ "rights",
4162
4174
  "run_action",
4163
4175
  "run_context",
4164
4176
  "run_context=",
@@ -5666,6 +5678,7 @@
5666
5678
  "define_singleton_method",
5667
5679
  "defined_at",
5668
5680
  "delayed_notifications",
5681
+ "deny_rights",
5669
5682
  "deprecated_ivar",
5670
5683
  "display",
5671
5684
  "dup",
@@ -5681,6 +5694,7 @@
5681
5694
  "files_group",
5682
5695
  "files_mode",
5683
5696
  "files_owner",
5697
+ "files_rights",
5684
5698
  "freeze",
5685
5699
  "frozen?",
5686
5700
  "gem",
@@ -5688,6 +5702,7 @@
5688
5702
  "hash",
5689
5703
  "ignore_failure",
5690
5704
  "immediate_notifications",
5705
+ "inherits",
5691
5706
  "initialize_clone",
5692
5707
  "initialize_dup",
5693
5708
  "inspect",
@@ -5747,6 +5762,7 @@
5747
5762
  "retries=",
5748
5763
  "retry_delay",
5749
5764
  "retry_delay=",
5765
+ "rights",
5750
5766
  "run_action",
5751
5767
  "run_context",
5752
5768
  "run_context=",
@@ -5820,6 +5836,7 @@
5820
5836
  "define_singleton_method",
5821
5837
  "defined_at",
5822
5838
  "delayed_notifications",
5839
+ "deny_rights",
5823
5840
  "deprecated_ivar",
5824
5841
  "display",
5825
5842
  "dup",
@@ -5838,6 +5855,7 @@
5838
5855
  "hash",
5839
5856
  "ignore_failure",
5840
5857
  "immediate_notifications",
5858
+ "inherits",
5841
5859
  "initialize_clone",
5842
5860
  "initialize_dup",
5843
5861
  "inspect",
@@ -5894,6 +5912,7 @@
5894
5912
  "retries=",
5895
5913
  "retry_delay",
5896
5914
  "retry_delay=",
5915
+ "rights",
5897
5916
  "run_action",
5898
5917
  "run_context",
5899
5918
  "run_context=",
@@ -7287,6 +7306,7 @@
7287
7306
  "define_singleton_method",
7288
7307
  "defined_at",
7289
7308
  "delayed_notifications",
7309
+ "deny_rights",
7290
7310
  "deprecated_ivar",
7291
7311
  "display",
7292
7312
  "dup",
@@ -7305,6 +7325,7 @@
7305
7325
  "hash",
7306
7326
  "ignore_failure",
7307
7327
  "immediate_notifications",
7328
+ "inherits",
7308
7329
  "initialize_clone",
7309
7330
  "initialize_dup",
7310
7331
  "inspect",
@@ -7362,6 +7383,7 @@
7362
7383
  "retries=",
7363
7384
  "retry_delay",
7364
7385
  "retry_delay=",
7386
+ "rights",
7365
7387
  "run_action",
7366
7388
  "run_context",
7367
7389
  "run_context=",
@@ -1235,6 +1235,7 @@
1235
1235
  "define_singleton_method",
1236
1236
  "defined_at",
1237
1237
  "delayed_notifications",
1238
+ "deny_rights",
1238
1239
  "deprecated_ivar",
1239
1240
  "display",
1240
1241
  "dup",
@@ -1253,6 +1254,7 @@
1253
1254
  "hash",
1254
1255
  "ignore_failure",
1255
1256
  "immediate_notifications",
1257
+ "inherits",
1256
1258
  "initialize_clone",
1257
1259
  "initialize_dup",
1258
1260
  "inspect",
@@ -1309,6 +1311,7 @@
1309
1311
  "retries=",
1310
1312
  "retry_delay",
1311
1313
  "retry_delay=",
1314
+ "rights",
1312
1315
  "run_action",
1313
1316
  "run_context",
1314
1317
  "run_context=",
@@ -2209,6 +2212,7 @@
2209
2212
  "define_singleton_method",
2210
2213
  "defined_at",
2211
2214
  "delayed_notifications",
2215
+ "deny_rights",
2212
2216
  "deprecated_ivar",
2213
2217
  "display",
2214
2218
  "dup",
@@ -2227,6 +2231,7 @@
2227
2231
  "hash",
2228
2232
  "ignore_failure",
2229
2233
  "immediate_notifications",
2234
+ "inherits",
2230
2235
  "initialize_clone",
2231
2236
  "initialize_dup",
2232
2237
  "inspect",
@@ -2284,6 +2289,7 @@
2284
2289
  "retries=",
2285
2290
  "retry_delay",
2286
2291
  "retry_delay=",
2292
+ "rights",
2287
2293
  "run_action",
2288
2294
  "run_context",
2289
2295
  "run_context=",
@@ -3072,6 +3078,7 @@
3072
3078
  "define_singleton_method",
3073
3079
  "defined_at",
3074
3080
  "delayed_notifications",
3081
+ "deny_rights",
3075
3082
  "deprecated_ivar",
3076
3083
  "display",
3077
3084
  "dup",
@@ -3090,6 +3097,7 @@
3090
3097
  "hash",
3091
3098
  "ignore_failure",
3092
3099
  "immediate_notifications",
3100
+ "inherits",
3093
3101
  "initialize_clone",
3094
3102
  "initialize_dup",
3095
3103
  "inspect",
@@ -3146,6 +3154,7 @@
3146
3154
  "retries=",
3147
3155
  "retry_delay",
3148
3156
  "retry_delay=",
3157
+ "rights",
3149
3158
  "run_action",
3150
3159
  "run_context",
3151
3160
  "run_context=",
@@ -4085,6 +4094,7 @@
4085
4094
  "define_singleton_method",
4086
4095
  "defined_at",
4087
4096
  "delayed_notifications",
4097
+ "deny_rights",
4088
4098
  "deprecated_ivar",
4089
4099
  "display",
4090
4100
  "dup",
@@ -4103,6 +4113,7 @@
4103
4113
  "hash",
4104
4114
  "ignore_failure",
4105
4115
  "immediate_notifications",
4116
+ "inherits",
4106
4117
  "initialize_clone",
4107
4118
  "initialize_dup",
4108
4119
  "inspect",
@@ -4159,6 +4170,7 @@
4159
4170
  "retries=",
4160
4171
  "retry_delay",
4161
4172
  "retry_delay=",
4173
+ "rights",
4162
4174
  "run_action",
4163
4175
  "run_context",
4164
4176
  "run_context=",
@@ -5666,6 +5678,7 @@
5666
5678
  "define_singleton_method",
5667
5679
  "defined_at",
5668
5680
  "delayed_notifications",
5681
+ "deny_rights",
5669
5682
  "deprecated_ivar",
5670
5683
  "display",
5671
5684
  "dup",
@@ -5681,6 +5694,7 @@
5681
5694
  "files_group",
5682
5695
  "files_mode",
5683
5696
  "files_owner",
5697
+ "files_rights",
5684
5698
  "freeze",
5685
5699
  "frozen?",
5686
5700
  "gem",
@@ -5688,6 +5702,7 @@
5688
5702
  "hash",
5689
5703
  "ignore_failure",
5690
5704
  "immediate_notifications",
5705
+ "inherits",
5691
5706
  "initialize_clone",
5692
5707
  "initialize_dup",
5693
5708
  "inspect",
@@ -5747,6 +5762,7 @@
5747
5762
  "retries=",
5748
5763
  "retry_delay",
5749
5764
  "retry_delay=",
5765
+ "rights",
5750
5766
  "run_action",
5751
5767
  "run_context",
5752
5768
  "run_context=",
@@ -5820,6 +5836,7 @@
5820
5836
  "define_singleton_method",
5821
5837
  "defined_at",
5822
5838
  "delayed_notifications",
5839
+ "deny_rights",
5823
5840
  "deprecated_ivar",
5824
5841
  "display",
5825
5842
  "dup",
@@ -5838,6 +5855,7 @@
5838
5855
  "hash",
5839
5856
  "ignore_failure",
5840
5857
  "immediate_notifications",
5858
+ "inherits",
5841
5859
  "initialize_clone",
5842
5860
  "initialize_dup",
5843
5861
  "inspect",
@@ -5894,6 +5912,7 @@
5894
5912
  "retries=",
5895
5913
  "retry_delay",
5896
5914
  "retry_delay=",
5915
+ "rights",
5897
5916
  "run_action",
5898
5917
  "run_context",
5899
5918
  "run_context=",
@@ -7287,6 +7306,7 @@
7287
7306
  "define_singleton_method",
7288
7307
  "defined_at",
7289
7308
  "delayed_notifications",
7309
+ "deny_rights",
7290
7310
  "deprecated_ivar",
7291
7311
  "display",
7292
7312
  "dup",
@@ -7305,6 +7325,7 @@
7305
7325
  "hash",
7306
7326
  "ignore_failure",
7307
7327
  "immediate_notifications",
7328
+ "inherits",
7308
7329
  "initialize_clone",
7309
7330
  "initialize_dup",
7310
7331
  "inspect",
@@ -7362,6 +7383,7 @@
7362
7383
  "retries=",
7363
7384
  "retry_delay",
7364
7385
  "retry_delay=",
7386
+ "rights",
7365
7387
  "run_action",
7366
7388
  "run_context",
7367
7389
  "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=",
@@ -6102,6 +6114,7 @@
6102
6114
  "define_singleton_method",
6103
6115
  "defined_at",
6104
6116
  "delayed_notifications",
6117
+ "deny_rights",
6105
6118
  "deprecated_ivar",
6106
6119
  "display",
6107
6120
  "dup",
@@ -6119,6 +6132,7 @@
6119
6132
  "files_group",
6120
6133
  "files_mode",
6121
6134
  "files_owner",
6135
+ "files_rights",
6122
6136
  "freeze",
6123
6137
  "frozen?",
6124
6138
  "gem",
@@ -6127,6 +6141,7 @@
6127
6141
  "identity",
6128
6142
  "ignore_failure",
6129
6143
  "immediate_notifications",
6144
+ "inherits",
6130
6145
  "initialize_clone",
6131
6146
  "initialize_dup",
6132
6147
  "inspect",
@@ -6187,6 +6202,7 @@
6187
6202
  "retries=",
6188
6203
  "retry_delay",
6189
6204
  "retry_delay=",
6205
+ "rights",
6190
6206
  "run_action",
6191
6207
  "run_context",
6192
6208
  "run_context=",
@@ -6264,6 +6280,7 @@
6264
6280
  "define_singleton_method",
6265
6281
  "defined_at",
6266
6282
  "delayed_notifications",
6283
+ "deny_rights",
6267
6284
  "deprecated_ivar",
6268
6285
  "diff",
6269
6286
  "display",
@@ -6286,6 +6303,7 @@
6286
6303
  "identity",
6287
6304
  "ignore_failure",
6288
6305
  "immediate_notifications",
6306
+ "inherits",
6289
6307
  "initialize_clone",
6290
6308
  "initialize_dup",
6291
6309
  "inspect",
@@ -6343,6 +6361,7 @@
6343
6361
  "retries=",
6344
6362
  "retry_delay",
6345
6363
  "retry_delay=",
6364
+ "rights",
6346
6365
  "run_action",
6347
6366
  "run_context",
6348
6367
  "run_context=",
@@ -7812,6 +7831,7 @@
7812
7831
  "define_singleton_method",
7813
7832
  "defined_at",
7814
7833
  "delayed_notifications",
7834
+ "deny_rights",
7815
7835
  "deprecated_ivar",
7816
7836
  "diff",
7817
7837
  "display",
@@ -7834,6 +7854,7 @@
7834
7854
  "identity",
7835
7855
  "ignore_failure",
7836
7856
  "immediate_notifications",
7857
+ "inherits",
7837
7858
  "initialize_clone",
7838
7859
  "initialize_dup",
7839
7860
  "inspect",
@@ -7892,6 +7913,7 @@
7892
7913
  "retries=",
7893
7914
  "retry_delay",
7894
7915
  "retry_delay=",
7916
+ "rights",
7895
7917
  "run_action",
7896
7918
  "run_context",
7897
7919
  "run_context=",